From e2787bf1b338e1342f4ac22a7279f3131456b7cd Mon Sep 17 00:00:00 2001 From: Dmitriy Popov Date: Fri, 15 Jan 2021 16:09:59 +0300 Subject: [PATCH] start files --- pages/beers/[id].tsx | 10 + pages/beers/index.ts | 1 + pages/contacts.tsx | 10 + src/config/index.ts | 2 +- src/gql/Beer.graphql | 31 + src/modules/gql/generated/beer.ts | 32 + src/modules/gql/generated/beers.ts | 69 + .../gql/generated/helpers/apollo-helpers.ts | 5194 +- src/modules/gql/generated/index.ts | 3 + src/modules/gql/generated/place.ts | 20 + src/modules/gql/generated/schema.json | 287670 ++++----------- src/modules/gql/generated/types.ts | 50828 +-- src/pages/Beers/View/Beer/Place/index.tsx | 16 + src/pages/Beers/View/Beer/Place/interfaces.ts | 5 + src/pages/Beers/View/Beer/Place/styles.ts | 3 + src/pages/Beers/View/Beer/index.tsx | 27 + src/pages/Beers/View/Beer/interfaces.ts | 5 + src/pages/Beers/View/Beer/styles.ts | 8 + src/pages/Beers/View/index.tsx | 25 + src/pages/Beers/View/interfaces.ts | 5 + src/pages/Beers/View/styles.ts | 39 + src/pages/Beers/index.tsx | 73 + src/pages/_App/index.tsx | 5 + src/styles/styles.scss | 7 + 24 files changed, 89750 insertions(+), 254338 deletions(-) create mode 100644 pages/beers/[id].tsx create mode 100644 pages/beers/index.ts create mode 100644 pages/contacts.tsx create mode 100644 src/gql/Beer.graphql create mode 100644 src/modules/gql/generated/beer.ts create mode 100644 src/modules/gql/generated/beers.ts create mode 100644 src/modules/gql/generated/index.ts create mode 100644 src/modules/gql/generated/place.ts create mode 100644 src/pages/Beers/View/Beer/Place/index.tsx create mode 100644 src/pages/Beers/View/Beer/Place/interfaces.ts create mode 100644 src/pages/Beers/View/Beer/Place/styles.ts create mode 100644 src/pages/Beers/View/Beer/index.tsx create mode 100644 src/pages/Beers/View/Beer/interfaces.ts create mode 100644 src/pages/Beers/View/Beer/styles.ts create mode 100644 src/pages/Beers/View/index.tsx create mode 100644 src/pages/Beers/View/interfaces.ts create mode 100644 src/pages/Beers/View/styles.ts create mode 100644 src/pages/Beers/index.tsx diff --git a/pages/beers/[id].tsx b/pages/beers/[id].tsx new file mode 100644 index 0000000..2d7c9cf --- /dev/null +++ b/pages/beers/[id].tsx @@ -0,0 +1,10 @@ +import { useRouter } from 'next/dist/client/router' +import { Page } from 'src/pages/_App/interfaces' + +const BeerPage: Page = () => { + const router = useRouter() + + return <>{router.query.id} +} + +export default BeerPage diff --git a/pages/beers/index.ts b/pages/beers/index.ts new file mode 100644 index 0000000..55a99a2 --- /dev/null +++ b/pages/beers/index.ts @@ -0,0 +1 @@ +export { default } from 'src/pages/Beers' diff --git a/pages/contacts.tsx b/pages/contacts.tsx new file mode 100644 index 0000000..5a2048f --- /dev/null +++ b/pages/contacts.tsx @@ -0,0 +1,10 @@ +import { NextSeo } from 'next-seo' + +export default () => { + return ( + <> + + Contacts + + ) +} diff --git a/src/config/index.ts b/src/config/index.ts index 9df2d12..9b4bd36 100644 --- a/src/config/index.ts +++ b/src/config/index.ts @@ -3,4 +3,4 @@ import DotEnv from 'dotenv' DotEnv.config() // API Endpoint -export const endpoint = process.env.API_ENDPOINT || 'https://api.prisma-cms.com' +export const endpoint = process.env.API_ENDPOINT || 'https://pivkarta.ru/api/' diff --git a/src/gql/Beer.graphql b/src/gql/Beer.graphql new file mode 100644 index 0000000..0656cc7 --- /dev/null +++ b/src/gql/Beer.graphql @@ -0,0 +1,31 @@ +query beers($where: BeerWhereInput, $first: Int = 3, $skip: Int) { + beersConnection(where: $where, first: $first, skip: $skip) { + aggregate { + count + } + edges { + node { + ...beer + } + } + } +} + +fragment beer on Beer { + id + name + uri + places { + id + price + Place { + ...place + } + } +} + +fragment place on Place { + id + name + uri +} diff --git a/src/modules/gql/generated/beer.ts b/src/modules/gql/generated/beer.ts new file mode 100644 index 0000000..316c5aa --- /dev/null +++ b/src/modules/gql/generated/beer.ts @@ -0,0 +1,32 @@ +/* eslint-disable */ + +/** +* ФАЙЛ ГЕНЕРИРУЕТСЯ АВТОМАТИЧЕСКИ, ПРАВИТЬ ЕГО НЕ НУЖНО +* Команда для генерирования этого файла: "yarn generate:types" +*/ + + +import * as Types from './types'; + +import { PlaceFragment } from './place'; +import { gql } from '@apollo/client'; +import { PlaceFragmentDoc } from './place'; +export type BeerFragment = { __typename?: 'Beer', id: string, name?: Types.Maybe, uri?: Types.Maybe, places?: Types.Maybe, Place: ( + { __typename?: 'Place' } + & PlaceFragment + ) }>> }; + +export const BeerFragmentDoc = gql` + fragment beer on Beer { + id + name + uri + places { + id + price + Place { + ...place + } + } +} + ${PlaceFragmentDoc}`; \ No newline at end of file diff --git a/src/modules/gql/generated/beers.ts b/src/modules/gql/generated/beers.ts new file mode 100644 index 0000000..9de05f4 --- /dev/null +++ b/src/modules/gql/generated/beers.ts @@ -0,0 +1,69 @@ +/* eslint-disable */ + +/** +* ФАЙЛ ГЕНЕРИРУЕТСЯ АВТОМАТИЧЕСКИ, ПРАВИТЬ ЕГО НЕ НУЖНО +* Команда для генерирования этого файла: "yarn generate:types" +*/ + + +import * as Types from './types'; + +import { BeerFragment } from './beer'; +import { gql } from '@apollo/client'; +import { BeerFragmentDoc } from './beer'; +import * as Apollo from '@apollo/client'; +export type BeersQueryVariables = Types.Exact<{ + where?: Types.Maybe; + first?: Types.Maybe; + skip?: Types.Maybe; +}>; + + +export type BeersQuery = { __typename?: 'Query', beersConnection: { __typename?: 'BeerConnection', aggregate: { __typename?: 'AggregateBeer', count: number }, edges: Array> } }; + + +export const BeersDocument = gql` + query beers($where: BeerWhereInput, $first: Int = 3, $skip: Int) { + beersConnection(where: $where, first: $first, skip: $skip) { + aggregate { + count + } + edges { + node { + ...beer + } + } + } +} + ${BeerFragmentDoc}`; + +/** + * __useBeersQuery__ + * + * To run a query within a React component, call `useBeersQuery` and pass it any options that fit your needs. + * When your component renders, `useBeersQuery` returns an object from Apollo Client that contains loading, error, and data properties + * you can use to render your UI. + * + * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options; + * + * @example + * const { data, loading, error } = useBeersQuery({ + * variables: { + * where: // value for 'where' + * first: // value for 'first' + * skip: // value for 'skip' + * }, + * }); + */ +export function useBeersQuery(baseOptions?: Apollo.QueryHookOptions) { + return Apollo.useQuery(BeersDocument, baseOptions); + } +export function useBeersLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions) { + return Apollo.useLazyQuery(BeersDocument, baseOptions); + } +export type BeersQueryHookResult = ReturnType; +export type BeersLazyQueryHookResult = ReturnType; +export type BeersQueryResult = Apollo.QueryResult; \ No newline at end of file diff --git a/src/modules/gql/generated/helpers/apollo-helpers.ts b/src/modules/gql/generated/helpers/apollo-helpers.ts index 64df6bc..6084738 100644 --- a/src/modules/gql/generated/helpers/apollo-helpers.ts +++ b/src/modules/gql/generated/helpers/apollo-helpers.ts @@ -1,136 +1,86 @@ import { FieldPolicy, FieldReadFunction, TypePolicies, TypePolicy } from '@apollo/client/cache'; -export type QueryKeySpecifier = ('apiSchema' | 'galleries' | 'userGroups' | 'worlds' | 'notices' | 'notificationTypes' | 'resourceTags' | 'tags' | 'votes' | 'chatRooms' | 'games' | 'gameResults' | 'tournaments' | 'tournamentGroups' | 'tourneys' | 'ethAccounts' | 'ethContractSources' | 'ethTransactions' | 'callRequests' | 'positions' | 'projectMembers' | 'services' | 'tasks' | 'taskReactions' | 'teamMembers' | 'timers' | 'routes' | 'codeChallenges' | 'codeChallengeBlocks' | 'codeChallengeCompletions' | 'comments' | 'technologyLessons' | 'careers' | 'technologyLessonUsers' | 'userTechnologies' | 'tests' | 'technologies' | 'ethBlocks' | 'teams' | 'projects' | 'templates' | 'resources' | 'chatMessages' | 'users' | 'gallery' | 'world' | 'notice' | 'notificationType' | 'resourceTag' | 'tag' | 'vote' | 'chatRoom' | 'game' | 'gameResult' | 'tournament' | 'tournamentGroup' | 'tourney' | 'ethAccount' | 'ethContractSource' | 'ethTransaction' | 'position' | 'projectMember' | 'service' | 'task' | 'taskReaction' | 'teamMember' | 'timer' | 'route' | 'codeChallenge' | 'codeChallengeBlock' | 'codeChallengeCompletion' | 'comment' | 'technologyLesson' | 'career' | 'technologyLessonUser' | 'userTechnology' | 'test' | 'file' | 'technology' | 'ethBlock' | 'team' | 'project' | 'template' | 'resource' | 'chatMessage' | 'user' | 'galleriesConnection' | 'worldsConnection' | 'noticesConnection' | 'notificationTypesConnection' | 'resourceTagsConnection' | 'tagsConnection' | 'votesConnection' | 'chatRoomsConnection' | 'gamesConnection' | 'gameResultsConnection' | 'tournamentsConnection' | 'tournamentGroupsConnection' | 'tourneysConnection' | 'ethAccountsConnection' | 'ethContractSourcesConnection' | 'ethTransactionsConnection' | 'callRequestsConnection' | 'positionsConnection' | 'projectMembersConnection' | 'servicesConnection' | 'tasksConnection' | 'taskReactionsConnection' | 'teamMembersConnection' | 'timersConnection' | 'routesConnection' | 'codeChallengesConnection' | 'codeChallengeBlocksConnection' | 'codeChallengeCompletionsConnection' | 'commentsConnection' | 'technologyLessonsConnection' | 'careersConnection' | 'technologyLessonUsersConnection' | 'userTechnologiesConnection' | 'testsConnection' | 'technologiesConnection' | 'ethBlocksConnection' | 'teamsConnection' | 'projectsConnection' | 'templatesConnection' | 'resourcesConnection' | 'chatMessagesConnection' | 'usersConnection' | 'myWorlds' | 'me' | 'ethNet' | 'ethCoinbase' | 'ethPersonalAccounts' | 'ethBalance' | 'ethTransactionCount' | 'ethSyncState' | 'ethGetBlockNumber' | 'ethGetBlock' | 'ethGetBlockTransactionCount' | 'ethGetTransaction' | QueryKeySpecifier)[]; +export type QueryKeySpecifier = ('me' | 'mapPlacesConnection' | 'mapGeoObjectsConnection' | 'routes' | 'userGroups' | 'ethAccounts' | 'ethTransactions' | 'resources' | 'chatRooms' | 'notices' | 'notificationTypes' | 'resourceTags' | 'tags' | 'games' | 'gameResults' | 'tournaments' | 'tournamentGroups' | 'tourneys' | 'votes' | 'callRequests' | 'beers' | 'userTarifs' | 'cities' | 'comments' | 'places' | 'tarifs' | 'ethBlocks' | 'ethContractSources' | 'users' | 'chatMessages' | 'route' | 'ethAccount' | 'ethTransaction' | 'resource' | 'chatMessageReaded' | 'chatRoom' | 'notice' | 'notificationType' | 'resourceTag' | 'tag' | 'game' | 'gameResult' | 'tournament' | 'tournamentGroup' | 'tourney' | 'vote' | 'beer' | 'city' | 'comment' | 'place' | 'topic' | 'ethBlock' | 'ethContractSource' | 'user' | 'chatMessage' | 'routesConnection' | 'ethAccountsConnection' | 'ethTransactionsConnection' | 'resourcesConnection' | 'chatMessageReadedsConnection' | 'chatRoomsConnection' | 'noticesConnection' | 'notificationTypesConnection' | 'resourceTagsConnection' | 'tagsConnection' | 'gamesConnection' | 'gameResultsConnection' | 'tournamentsConnection' | 'tournamentGroupsConnection' | 'tourneysConnection' | 'votesConnection' | 'callRequestsConnection' | 'beersConnection' | 'commentsConnection' | 'placesConnection' | 'topicsConnection' | 'ethBlocksConnection' | 'ethContractSourcesConnection' | 'usersConnection' | 'chatMessagesConnection' | 'ethNet' | 'ethCoinbase' | 'ethPersonalAccounts' | 'ethBalance' | 'ethTransactionCount' | 'ethSyncState' | 'ethGetBlockNumber' | 'ethGetBlock' | 'ethGetBlockTransactionCount' | 'ethGetTransaction' | QueryKeySpecifier)[]; export type QueryFieldPolicy = { - apiSchema?: FieldPolicy | FieldReadFunction, - galleries?: FieldPolicy | FieldReadFunction, + me?: FieldPolicy | FieldReadFunction, + mapPlacesConnection?: FieldPolicy | FieldReadFunction, + mapGeoObjectsConnection?: FieldPolicy | FieldReadFunction, + routes?: FieldPolicy | FieldReadFunction, userGroups?: FieldPolicy | FieldReadFunction, - worlds?: FieldPolicy | FieldReadFunction, + ethAccounts?: FieldPolicy | FieldReadFunction, + ethTransactions?: FieldPolicy | FieldReadFunction, + resources?: FieldPolicy | FieldReadFunction, + chatRooms?: FieldPolicy | FieldReadFunction, notices?: FieldPolicy | FieldReadFunction, notificationTypes?: FieldPolicy | FieldReadFunction, resourceTags?: FieldPolicy | FieldReadFunction, tags?: FieldPolicy | FieldReadFunction, - votes?: FieldPolicy | FieldReadFunction, - chatRooms?: FieldPolicy | FieldReadFunction, games?: FieldPolicy | FieldReadFunction, gameResults?: FieldPolicy | FieldReadFunction, tournaments?: FieldPolicy | FieldReadFunction, tournamentGroups?: FieldPolicy | FieldReadFunction, tourneys?: FieldPolicy | FieldReadFunction, - ethAccounts?: FieldPolicy | FieldReadFunction, - ethContractSources?: FieldPolicy | FieldReadFunction, - ethTransactions?: FieldPolicy | FieldReadFunction, + votes?: FieldPolicy | FieldReadFunction, callRequests?: FieldPolicy | FieldReadFunction, - positions?: FieldPolicy | FieldReadFunction, - projectMembers?: FieldPolicy | FieldReadFunction, - services?: FieldPolicy | FieldReadFunction, - tasks?: FieldPolicy | FieldReadFunction, - taskReactions?: FieldPolicy | FieldReadFunction, - teamMembers?: FieldPolicy | FieldReadFunction, - timers?: FieldPolicy | FieldReadFunction, - routes?: FieldPolicy | FieldReadFunction, - codeChallenges?: FieldPolicy | FieldReadFunction, - codeChallengeBlocks?: FieldPolicy | FieldReadFunction, - codeChallengeCompletions?: FieldPolicy | FieldReadFunction, + beers?: FieldPolicy | FieldReadFunction, + userTarifs?: FieldPolicy | FieldReadFunction, + cities?: FieldPolicy | FieldReadFunction, comments?: FieldPolicy | FieldReadFunction, - technologyLessons?: FieldPolicy | FieldReadFunction, - careers?: FieldPolicy | FieldReadFunction, - technologyLessonUsers?: FieldPolicy | FieldReadFunction, - userTechnologies?: FieldPolicy | FieldReadFunction, - tests?: FieldPolicy | FieldReadFunction, - technologies?: FieldPolicy | FieldReadFunction, + places?: FieldPolicy | FieldReadFunction, + tarifs?: FieldPolicy | FieldReadFunction, ethBlocks?: FieldPolicy | FieldReadFunction, - teams?: FieldPolicy | FieldReadFunction, - projects?: FieldPolicy | FieldReadFunction, - templates?: FieldPolicy | FieldReadFunction, - resources?: FieldPolicy | FieldReadFunction, - chatMessages?: FieldPolicy | FieldReadFunction, + ethContractSources?: FieldPolicy | FieldReadFunction, users?: FieldPolicy | FieldReadFunction, - gallery?: FieldPolicy | FieldReadFunction, - world?: FieldPolicy | FieldReadFunction, + chatMessages?: FieldPolicy | FieldReadFunction, + route?: FieldPolicy | FieldReadFunction, + ethAccount?: FieldPolicy | FieldReadFunction, + ethTransaction?: FieldPolicy | FieldReadFunction, + resource?: FieldPolicy | FieldReadFunction, + chatMessageReaded?: FieldPolicy | FieldReadFunction, + chatRoom?: FieldPolicy | FieldReadFunction, notice?: FieldPolicy | FieldReadFunction, notificationType?: FieldPolicy | FieldReadFunction, resourceTag?: FieldPolicy | FieldReadFunction, tag?: FieldPolicy | FieldReadFunction, - vote?: FieldPolicy | FieldReadFunction, - chatRoom?: FieldPolicy | FieldReadFunction, game?: FieldPolicy | FieldReadFunction, gameResult?: FieldPolicy | FieldReadFunction, tournament?: FieldPolicy | FieldReadFunction, tournamentGroup?: FieldPolicy | FieldReadFunction, tourney?: FieldPolicy | FieldReadFunction, - ethAccount?: FieldPolicy | FieldReadFunction, - ethContractSource?: FieldPolicy | FieldReadFunction, - ethTransaction?: FieldPolicy | FieldReadFunction, - position?: FieldPolicy | FieldReadFunction, - projectMember?: FieldPolicy | FieldReadFunction, - service?: FieldPolicy | FieldReadFunction, - task?: FieldPolicy | FieldReadFunction, - taskReaction?: FieldPolicy | FieldReadFunction, - teamMember?: FieldPolicy | FieldReadFunction, - timer?: FieldPolicy | FieldReadFunction, - route?: FieldPolicy | FieldReadFunction, - codeChallenge?: FieldPolicy | FieldReadFunction, - codeChallengeBlock?: FieldPolicy | FieldReadFunction, - codeChallengeCompletion?: FieldPolicy | FieldReadFunction, + vote?: FieldPolicy | FieldReadFunction, + beer?: FieldPolicy | FieldReadFunction, + city?: FieldPolicy | FieldReadFunction, comment?: FieldPolicy | FieldReadFunction, - technologyLesson?: FieldPolicy | FieldReadFunction, - career?: FieldPolicy | FieldReadFunction, - technologyLessonUser?: FieldPolicy | FieldReadFunction, - userTechnology?: FieldPolicy | FieldReadFunction, - test?: FieldPolicy | FieldReadFunction, - file?: FieldPolicy | FieldReadFunction, - technology?: FieldPolicy | FieldReadFunction, + place?: FieldPolicy | FieldReadFunction, + topic?: FieldPolicy | FieldReadFunction, ethBlock?: FieldPolicy | FieldReadFunction, - team?: FieldPolicy | FieldReadFunction, - project?: FieldPolicy | FieldReadFunction, - template?: FieldPolicy | FieldReadFunction, - resource?: FieldPolicy | FieldReadFunction, - chatMessage?: FieldPolicy | FieldReadFunction, + ethContractSource?: FieldPolicy | FieldReadFunction, user?: FieldPolicy | FieldReadFunction, - galleriesConnection?: FieldPolicy | FieldReadFunction, - worldsConnection?: FieldPolicy | FieldReadFunction, + chatMessage?: FieldPolicy | FieldReadFunction, + routesConnection?: FieldPolicy | FieldReadFunction, + ethAccountsConnection?: FieldPolicy | FieldReadFunction, + ethTransactionsConnection?: FieldPolicy | FieldReadFunction, + resourcesConnection?: FieldPolicy | FieldReadFunction, + chatMessageReadedsConnection?: FieldPolicy | FieldReadFunction, + chatRoomsConnection?: FieldPolicy | FieldReadFunction, noticesConnection?: FieldPolicy | FieldReadFunction, notificationTypesConnection?: FieldPolicy | FieldReadFunction, resourceTagsConnection?: FieldPolicy | FieldReadFunction, tagsConnection?: FieldPolicy | FieldReadFunction, - votesConnection?: FieldPolicy | FieldReadFunction, - chatRoomsConnection?: FieldPolicy | FieldReadFunction, gamesConnection?: FieldPolicy | FieldReadFunction, gameResultsConnection?: FieldPolicy | FieldReadFunction, tournamentsConnection?: FieldPolicy | FieldReadFunction, tournamentGroupsConnection?: FieldPolicy | FieldReadFunction, tourneysConnection?: FieldPolicy | FieldReadFunction, - ethAccountsConnection?: FieldPolicy | FieldReadFunction, - ethContractSourcesConnection?: FieldPolicy | FieldReadFunction, - ethTransactionsConnection?: FieldPolicy | FieldReadFunction, + votesConnection?: FieldPolicy | FieldReadFunction, callRequestsConnection?: FieldPolicy | FieldReadFunction, - positionsConnection?: FieldPolicy | FieldReadFunction, - projectMembersConnection?: FieldPolicy | FieldReadFunction, - servicesConnection?: FieldPolicy | FieldReadFunction, - tasksConnection?: FieldPolicy | FieldReadFunction, - taskReactionsConnection?: FieldPolicy | FieldReadFunction, - teamMembersConnection?: FieldPolicy | FieldReadFunction, - timersConnection?: FieldPolicy | FieldReadFunction, - routesConnection?: FieldPolicy | FieldReadFunction, - codeChallengesConnection?: FieldPolicy | FieldReadFunction, - codeChallengeBlocksConnection?: FieldPolicy | FieldReadFunction, - codeChallengeCompletionsConnection?: FieldPolicy | FieldReadFunction, + beersConnection?: FieldPolicy | FieldReadFunction, commentsConnection?: FieldPolicy | FieldReadFunction, - technologyLessonsConnection?: FieldPolicy | FieldReadFunction, - careersConnection?: FieldPolicy | FieldReadFunction, - technologyLessonUsersConnection?: FieldPolicy | FieldReadFunction, - userTechnologiesConnection?: FieldPolicy | FieldReadFunction, - testsConnection?: FieldPolicy | FieldReadFunction, - technologiesConnection?: FieldPolicy | FieldReadFunction, + placesConnection?: FieldPolicy | FieldReadFunction, + topicsConnection?: FieldPolicy | FieldReadFunction, ethBlocksConnection?: FieldPolicy | FieldReadFunction, - teamsConnection?: FieldPolicy | FieldReadFunction, - projectsConnection?: FieldPolicy | FieldReadFunction, - templatesConnection?: FieldPolicy | FieldReadFunction, - resourcesConnection?: FieldPolicy | FieldReadFunction, - chatMessagesConnection?: FieldPolicy | FieldReadFunction, + ethContractSourcesConnection?: FieldPolicy | FieldReadFunction, usersConnection?: FieldPolicy | FieldReadFunction, - myWorlds?: FieldPolicy | FieldReadFunction, - me?: FieldPolicy | FieldReadFunction, + chatMessagesConnection?: FieldPolicy | FieldReadFunction, ethNet?: FieldPolicy | FieldReadFunction, ethCoinbase?: FieldPolicy | FieldReadFunction, ethPersonalAccounts?: FieldPolicy | FieldReadFunction, @@ -142,38 +92,7 @@ export type QueryFieldPolicy = { ethGetBlockTransactionCount?: FieldPolicy | FieldReadFunction, ethGetTransaction?: FieldPolicy | FieldReadFunction }; -export type GalleryKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'Files' | 'CreatedBy' | 'Resource' | GalleryKeySpecifier)[]; -export type GalleryFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - name?: FieldPolicy | FieldReadFunction, - Files?: FieldPolicy | FieldReadFunction, - CreatedBy?: FieldPolicy | FieldReadFunction, - Resource?: FieldPolicy | FieldReadFunction -}; -export type NodeKeySpecifier = ('id' | NodeKeySpecifier)[]; -export type NodeFieldPolicy = { - id?: FieldPolicy | FieldReadFunction -}; -export type FileKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'path' | 'name' | 'filename' | 'mimetype' | 'encoding' | 'hash' | 'size' | 'rank' | 'Gallery' | 'CreatedBy' | 'ImageResource' | FileKeySpecifier)[]; -export type FileFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - path?: FieldPolicy | FieldReadFunction, - name?: FieldPolicy | FieldReadFunction, - filename?: FieldPolicy | FieldReadFunction, - mimetype?: FieldPolicy | FieldReadFunction, - encoding?: FieldPolicy | FieldReadFunction, - hash?: FieldPolicy | FieldReadFunction, - size?: FieldPolicy | FieldReadFunction, - rank?: FieldPolicy | FieldReadFunction, - Gallery?: FieldPolicy | FieldReadFunction, - CreatedBy?: FieldPolicy | FieldReadFunction, - ImageResource?: FieldPolicy | FieldReadFunction -}; -export type UserKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'username' | 'email' | 'phone' | 'showEmail' | 'showPhone' | 'password' | 'fullname' | 'image' | 'address' | 'sudo' | 'active' | 'activated' | 'deleted' | 'Groups' | 'CreatedUsers' | 'CreatedBy' | 'LogedIns' | 'Resources' | 'Votes' | 'NotificationTypes' | 'NotificationTypesCreated' | 'Tags' | 'ResourceTags' | 'EthContractSourcesCreated' | 'EthAccounts' | 'Teams' | 'TeamsCreated' | 'Projects' | 'ProjectsCreated' | 'Tasks' | 'Timers' | 'PrismaProjects' | 'CodeChallengeCompletions' | 'hasEmail' | 'hasPhone' | 'marketplaceToken' | 'hidden' | 'EthAccountAuthed' | 'worlds' | 'settings' | UserKeySpecifier)[]; +export type UserKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'username' | 'email' | 'phone' | 'showEmail' | 'showPhone' | 'password' | 'fullname' | 'image' | 'address' | 'active' | 'activated' | 'deleted' | 'Groups' | 'CreatedUsers' | 'CreatedBy' | 'LogedIns' | 'Files' | 'hidden' | 'EthContractSourcesCreated' | 'EthAccounts' | 'Resources' | 'Rooms' | 'CreatedRooms' | 'Messages' | 'ReadedMessages' | 'Notices' | 'Votes' | 'NotificationTypes' | 'NotificationTypesCreated' | 'Tags' | 'ResourceTags' | 'PrismaProjects' | 'user_id' | 'first_name' | 'middle_name' | 'last_name' | 'gender' | 'birth_date' | 'country_id' | 'region_id' | 'city_id' | 'status' | 'timezone' | 'language_id' | 'num_blog_posts' | 'last' | 'created_at' | 'notification' | 'icq' | 'www' | 'contact_email' | 'mobile_phone' | 'home_phone' | 'about' | 'experience' | 'job_title' | 'work_place' | 'ip' | 'confirmation_code' | 'rating' | 'etherwallet' | 'photo' | 'topics' | 'comments' | 'Tarifs' | 'Account' | 'Places' | 'sudo' | 'hasEmail' | 'hasPhone' | UserKeySpecifier)[]; export type UserFieldPolicy = { id?: FieldPolicy | FieldReadFunction, createdAt?: FieldPolicy | FieldReadFunction, @@ -187,7 +106,6 @@ export type UserFieldPolicy = { fullname?: FieldPolicy | FieldReadFunction, image?: FieldPolicy | FieldReadFunction, address?: FieldPolicy | FieldReadFunction, - sudo?: FieldPolicy | FieldReadFunction, active?: FieldPolicy | FieldReadFunction, activated?: FieldPolicy | FieldReadFunction, deleted?: FieldPolicy | FieldReadFunction, @@ -195,56 +113,101 @@ export type UserFieldPolicy = { CreatedUsers?: FieldPolicy | FieldReadFunction, CreatedBy?: FieldPolicy | FieldReadFunction, LogedIns?: FieldPolicy | FieldReadFunction, + Files?: FieldPolicy | FieldReadFunction, + hidden?: FieldPolicy | FieldReadFunction, + EthContractSourcesCreated?: FieldPolicy | FieldReadFunction, + EthAccounts?: FieldPolicy | FieldReadFunction, Resources?: FieldPolicy | FieldReadFunction, + Rooms?: FieldPolicy | FieldReadFunction, + CreatedRooms?: FieldPolicy | FieldReadFunction, + Messages?: FieldPolicy | FieldReadFunction, + ReadedMessages?: FieldPolicy | FieldReadFunction, + Notices?: FieldPolicy | FieldReadFunction, Votes?: FieldPolicy | FieldReadFunction, NotificationTypes?: FieldPolicy | FieldReadFunction, NotificationTypesCreated?: FieldPolicy | FieldReadFunction, Tags?: FieldPolicy | FieldReadFunction, ResourceTags?: FieldPolicy | FieldReadFunction, - EthContractSourcesCreated?: FieldPolicy | FieldReadFunction, - EthAccounts?: FieldPolicy | FieldReadFunction, - Teams?: FieldPolicy | FieldReadFunction, - TeamsCreated?: FieldPolicy | FieldReadFunction, - Projects?: FieldPolicy | FieldReadFunction, - ProjectsCreated?: FieldPolicy | FieldReadFunction, - Tasks?: FieldPolicy | FieldReadFunction, - Timers?: FieldPolicy | FieldReadFunction, PrismaProjects?: FieldPolicy | FieldReadFunction, - CodeChallengeCompletions?: FieldPolicy | FieldReadFunction, + user_id?: FieldPolicy | FieldReadFunction, + first_name?: FieldPolicy | FieldReadFunction, + middle_name?: FieldPolicy | FieldReadFunction, + last_name?: FieldPolicy | FieldReadFunction, + gender?: FieldPolicy | FieldReadFunction, + birth_date?: FieldPolicy | FieldReadFunction, + country_id?: FieldPolicy | FieldReadFunction, + region_id?: FieldPolicy | FieldReadFunction, + city_id?: FieldPolicy | FieldReadFunction, + status?: FieldPolicy | FieldReadFunction, + timezone?: FieldPolicy | FieldReadFunction, + language_id?: FieldPolicy | FieldReadFunction, + num_blog_posts?: FieldPolicy | FieldReadFunction, + last?: FieldPolicy | FieldReadFunction, + created_at?: FieldPolicy | FieldReadFunction, + notification?: FieldPolicy | FieldReadFunction, + icq?: FieldPolicy | FieldReadFunction, + www?: FieldPolicy | FieldReadFunction, + contact_email?: FieldPolicy | FieldReadFunction, + mobile_phone?: FieldPolicy | FieldReadFunction, + home_phone?: FieldPolicy | FieldReadFunction, + about?: FieldPolicy | FieldReadFunction, + experience?: FieldPolicy | FieldReadFunction, + job_title?: FieldPolicy | FieldReadFunction, + work_place?: FieldPolicy | FieldReadFunction, + ip?: FieldPolicy | FieldReadFunction, + confirmation_code?: FieldPolicy | FieldReadFunction, + rating?: FieldPolicy | FieldReadFunction, + etherwallet?: FieldPolicy | FieldReadFunction, + photo?: FieldPolicy | FieldReadFunction, + topics?: FieldPolicy | FieldReadFunction, + comments?: FieldPolicy | FieldReadFunction, + Tarifs?: FieldPolicy | FieldReadFunction, + Account?: FieldPolicy | FieldReadFunction, + Places?: FieldPolicy | FieldReadFunction, + sudo?: FieldPolicy | FieldReadFunction, hasEmail?: FieldPolicy | FieldReadFunction, - hasPhone?: FieldPolicy | FieldReadFunction, - marketplaceToken?: FieldPolicy | FieldReadFunction, - hidden?: FieldPolicy | FieldReadFunction, - EthAccountAuthed?: FieldPolicy | FieldReadFunction, - worlds?: FieldPolicy | FieldReadFunction, - settings?: FieldPolicy | FieldReadFunction + hasPhone?: FieldPolicy | FieldReadFunction +}; +export type NodeKeySpecifier = ('id' | NodeKeySpecifier)[]; +export type NodeFieldPolicy = { + id?: FieldPolicy | FieldReadFunction }; -export type UserGroupKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'Users' | UserGroupKeySpecifier)[]; +export type UserGroupKeySpecifier = ('id' | 'name' | 'Users' | UserGroupKeySpecifier)[]; export type UserGroupFieldPolicy = { id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, name?: FieldPolicy | FieldReadFunction, Users?: FieldPolicy | FieldReadFunction }; -export type LogedInKeySpecifier = ('id' | 'createdAt' | 'fake' | 'User' | 'updatedAt' | LogedInKeySpecifier)[]; +export type LogedInKeySpecifier = ('id' | 'createdAt' | 'fake' | 'User' | LogedInKeySpecifier)[]; export type LogedInFieldPolicy = { id?: FieldPolicy | FieldReadFunction, createdAt?: FieldPolicy | FieldReadFunction, fake?: FieldPolicy | FieldReadFunction, - User?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction + User?: FieldPolicy | FieldReadFunction +}; +export type FileKeySpecifier = ('id' | 'path' | 'name' | 'filename' | 'mimetype' | 'encoding' | 'hash' | 'size' | 'CreatedBy' | 'ImageResource' | FileKeySpecifier)[]; +export type FileFieldPolicy = { + id?: FieldPolicy | FieldReadFunction, + path?: FieldPolicy | FieldReadFunction, + name?: FieldPolicy | FieldReadFunction, + filename?: FieldPolicy | FieldReadFunction, + mimetype?: FieldPolicy | FieldReadFunction, + encoding?: FieldPolicy | FieldReadFunction, + hash?: FieldPolicy | FieldReadFunction, + size?: FieldPolicy | FieldReadFunction, + CreatedBy?: FieldPolicy | FieldReadFunction, + ImageResource?: FieldPolicy | FieldReadFunction }; -export type ResourceKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'type' | 'name' | 'longtitle' | 'content' | 'components' | 'contentText' | 'published' | 'deleted' | 'hidemenu' | 'searchable' | 'uri' | 'isfolder' | 'CreatedBy' | 'Parent' | 'Childs' | 'Image' | 'rating' | 'positiveVotesCount' | 'negativeVotesCount' | 'neutralVotesCount' | 'CommentTarget' | 'Topic' | 'Comments' | 'Votes' | 'Tags' | 'oldID' | 'commentOldID' | 'Topics' | 'Blog' | 'Service' | 'Project' | 'Team' | 'class_key' | 'template' | 'mockUpdate' | 'Galleries' | 'CodeChallenge' | ResourceKeySpecifier)[]; +export type ResourceKeySpecifier = ('id' | 'code' | 'createdAt' | 'updatedAt' | 'type' | 'name' | 'longtitle' | 'content' | 'contentText' | 'published' | 'deleted' | 'hidemenu' | 'searchable' | 'uri' | 'isfolder' | 'CreatedBy' | 'Parent' | 'Childs' | 'Image' | 'PrismaProject' | 'rating' | 'positiveVotesCount' | 'negativeVotesCount' | 'neutralVotesCount' | 'CommentTarget' | 'Comments' | 'Votes' | 'Tags' | ResourceKeySpecifier)[]; export type ResourceFieldPolicy = { id?: FieldPolicy | FieldReadFunction, + code?: FieldPolicy | FieldReadFunction, createdAt?: FieldPolicy | FieldReadFunction, updatedAt?: FieldPolicy | FieldReadFunction, type?: FieldPolicy | FieldReadFunction, name?: FieldPolicy | FieldReadFunction, longtitle?: FieldPolicy | FieldReadFunction, content?: FieldPolicy | FieldReadFunction, - components?: FieldPolicy | FieldReadFunction, contentText?: FieldPolicy | FieldReadFunction, published?: FieldPolicy | FieldReadFunction, deleted?: FieldPolicy | FieldReadFunction, @@ -256,27 +219,22 @@ export type ResourceFieldPolicy = { Parent?: FieldPolicy | FieldReadFunction, Childs?: FieldPolicy | FieldReadFunction, Image?: FieldPolicy | FieldReadFunction, + PrismaProject?: FieldPolicy | FieldReadFunction, rating?: FieldPolicy | FieldReadFunction, positiveVotesCount?: FieldPolicy | FieldReadFunction, negativeVotesCount?: FieldPolicy | FieldReadFunction, neutralVotesCount?: FieldPolicy | FieldReadFunction, CommentTarget?: FieldPolicy | FieldReadFunction, - Topic?: FieldPolicy | FieldReadFunction, Comments?: FieldPolicy | FieldReadFunction, Votes?: FieldPolicy | FieldReadFunction, - Tags?: FieldPolicy | FieldReadFunction, - oldID?: FieldPolicy | FieldReadFunction, - commentOldID?: FieldPolicy | FieldReadFunction, - Topics?: FieldPolicy | FieldReadFunction, - Blog?: FieldPolicy | FieldReadFunction, - Service?: FieldPolicy | FieldReadFunction, - Project?: FieldPolicy | FieldReadFunction, - Team?: FieldPolicy | FieldReadFunction, - class_key?: FieldPolicy | FieldReadFunction, - template?: FieldPolicy | FieldReadFunction, - mockUpdate?: FieldPolicy | FieldReadFunction, - Galleries?: FieldPolicy | FieldReadFunction, - CodeChallenge?: FieldPolicy | FieldReadFunction + Tags?: FieldPolicy | FieldReadFunction +}; +export type ProjectKeySpecifier = ('id' | 'domain' | 'PrismaResources' | 'PrismaUsers' | ProjectKeySpecifier)[]; +export type ProjectFieldPolicy = { + id?: FieldPolicy | FieldReadFunction, + domain?: FieldPolicy | FieldReadFunction, + PrismaResources?: FieldPolicy | FieldReadFunction, + PrismaUsers?: FieldPolicy | FieldReadFunction }; export type VoteKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'Resource' | 'User' | 'value' | VoteKeySpecifier)[]; export type VoteFieldPolicy = { @@ -307,144 +265,84 @@ export type TagFieldPolicy = { Resources?: FieldPolicy | FieldReadFunction, CreatedBy?: FieldPolicy | FieldReadFunction }; -export type ServiceKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'description' | 'code' | 'CreatedBy' | 'Projects' | 'Parent' | 'Childs' | 'rank' | 'Category' | 'oldID' | 'Resource' | ServiceKeySpecifier)[]; -export type ServiceFieldPolicy = { +export type EthContractSourceKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'description' | 'source' | 'CreatedBy' | 'Accounts' | EthContractSourceKeySpecifier)[]; +export type EthContractSourceFieldPolicy = { id?: FieldPolicy | FieldReadFunction, createdAt?: FieldPolicy | FieldReadFunction, updatedAt?: FieldPolicy | FieldReadFunction, name?: FieldPolicy | FieldReadFunction, description?: FieldPolicy | FieldReadFunction, - code?: FieldPolicy | FieldReadFunction, + source?: FieldPolicy | FieldReadFunction, CreatedBy?: FieldPolicy | FieldReadFunction, - Projects?: FieldPolicy | FieldReadFunction, - Parent?: FieldPolicy | FieldReadFunction, - Childs?: FieldPolicy | FieldReadFunction, - rank?: FieldPolicy | FieldReadFunction, - Category?: FieldPolicy | FieldReadFunction, - oldID?: FieldPolicy | FieldReadFunction, - Resource?: FieldPolicy | FieldReadFunction + Accounts?: FieldPolicy | FieldReadFunction }; -export type ProjectMemberKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'CreatedBy' | 'Project' | 'User' | 'Services' | 'status' | ProjectMemberKeySpecifier)[]; -export type ProjectMemberFieldPolicy = { +export type EthAccountKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'description' | 'address' | 'type' | 'CreatedBy' | 'Transaction' | 'IncomeTransactions' | 'OutcomeTransactions' | 'source' | 'bytecode' | 'abi' | 'ContractSource' | 'BlocksMined' | 'UserAuthed' | 'balance' | EthAccountKeySpecifier)[]; +export type EthAccountFieldPolicy = { id?: FieldPolicy | FieldReadFunction, createdAt?: FieldPolicy | FieldReadFunction, updatedAt?: FieldPolicy | FieldReadFunction, - CreatedBy?: FieldPolicy | FieldReadFunction, - Project?: FieldPolicy | FieldReadFunction, - User?: FieldPolicy | FieldReadFunction, - Services?: FieldPolicy | FieldReadFunction, - status?: FieldPolicy | FieldReadFunction -}; -export type ProjectKeySpecifier = ('id' | 'name' | 'domain' | 'PrismaTemplates' | 'PrismaUsers' | 'PrismaResources' | 'createdAt' | 'updatedAt' | 'description' | 'url' | 'Members' | 'CreatedBy' | 'ProjectTasks' | 'Team' | 'Customers' | 'ChatRoom' | 'sequence' | 'content' | 'contentText' | 'status' | 'public' | 'oldID' | 'Image' | 'Resource' | 'type' | 'EthAccounts' | ProjectKeySpecifier)[]; -export type ProjectFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, name?: FieldPolicy | FieldReadFunction, - domain?: FieldPolicy | FieldReadFunction, - PrismaTemplates?: FieldPolicy | FieldReadFunction, - PrismaUsers?: FieldPolicy | FieldReadFunction, - PrismaResources?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, description?: FieldPolicy | FieldReadFunction, - url?: FieldPolicy | FieldReadFunction, - Members?: FieldPolicy | FieldReadFunction, - CreatedBy?: FieldPolicy | FieldReadFunction, - ProjectTasks?: FieldPolicy | FieldReadFunction, - Team?: FieldPolicy | FieldReadFunction, - Customers?: FieldPolicy | FieldReadFunction, - ChatRoom?: FieldPolicy | FieldReadFunction, - sequence?: FieldPolicy | FieldReadFunction, - content?: FieldPolicy | FieldReadFunction, - contentText?: FieldPolicy | FieldReadFunction, - status?: FieldPolicy | FieldReadFunction, - public?: FieldPolicy | FieldReadFunction, - oldID?: FieldPolicy | FieldReadFunction, - Image?: FieldPolicy | FieldReadFunction, - Resource?: FieldPolicy | FieldReadFunction, + address?: FieldPolicy | FieldReadFunction, type?: FieldPolicy | FieldReadFunction, - EthAccounts?: FieldPolicy | FieldReadFunction -}; -export type TemplateKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'externalKey' | 'name' | 'description' | 'component' | 'props' | 'components' | 'vars' | 'rank' | 'Parent' | 'CreatedBy' | 'Project' | 'PrismaProject' | TemplateKeySpecifier)[]; -export type TemplateFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - externalKey?: FieldPolicy | FieldReadFunction, - name?: FieldPolicy | FieldReadFunction, - description?: FieldPolicy | FieldReadFunction, - component?: FieldPolicy | FieldReadFunction, - props?: FieldPolicy | FieldReadFunction, - components?: FieldPolicy | FieldReadFunction, - vars?: FieldPolicy | FieldReadFunction, - rank?: FieldPolicy | FieldReadFunction, - Parent?: FieldPolicy | FieldReadFunction, - CreatedBy?: FieldPolicy | FieldReadFunction, - Project?: FieldPolicy | FieldReadFunction, - PrismaProject?: FieldPolicy | FieldReadFunction -}; -export type ProjectTaskKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'CreatedBy' | 'Project' | 'Task' | ProjectTaskKeySpecifier)[]; -export type ProjectTaskFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - CreatedBy?: FieldPolicy | FieldReadFunction, - Project?: FieldPolicy | FieldReadFunction, - Task?: FieldPolicy | FieldReadFunction -}; -export type TaskKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'description' | 'content' | 'status' | 'TaskProjects' | 'CreatedBy' | 'Members' | 'Parent' | 'Childs' | 'RelatedFrom' | 'RelatedTo' | 'startDatePlaning' | 'endDatePlaning' | 'startDate' | 'endDate' | 'Timers' | 'Reactions' | 'ChatRoom' | 'CodeChallengeCompletion' | TaskKeySpecifier)[]; -export type TaskFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - name?: FieldPolicy | FieldReadFunction, - description?: FieldPolicy | FieldReadFunction, - content?: FieldPolicy | FieldReadFunction, - status?: FieldPolicy | FieldReadFunction, - TaskProjects?: FieldPolicy | FieldReadFunction, - CreatedBy?: FieldPolicy | FieldReadFunction, - Members?: FieldPolicy | FieldReadFunction, - Parent?: FieldPolicy | FieldReadFunction, - Childs?: FieldPolicy | FieldReadFunction, - RelatedFrom?: FieldPolicy | FieldReadFunction, - RelatedTo?: FieldPolicy | FieldReadFunction, - startDatePlaning?: FieldPolicy | FieldReadFunction, - endDatePlaning?: FieldPolicy | FieldReadFunction, - startDate?: FieldPolicy | FieldReadFunction, - endDate?: FieldPolicy | FieldReadFunction, - Timers?: FieldPolicy | FieldReadFunction, - Reactions?: FieldPolicy | FieldReadFunction, - ChatRoom?: FieldPolicy | FieldReadFunction, - CodeChallengeCompletion?: FieldPolicy | FieldReadFunction -}; -export type TaskMemberKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'CreatedBy' | 'Task' | 'User' | 'status' | TaskMemberKeySpecifier)[]; -export type TaskMemberFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, CreatedBy?: FieldPolicy | FieldReadFunction, - Task?: FieldPolicy | FieldReadFunction, - User?: FieldPolicy | FieldReadFunction, - status?: FieldPolicy | FieldReadFunction + Transaction?: FieldPolicy | FieldReadFunction, + IncomeTransactions?: FieldPolicy | FieldReadFunction, + OutcomeTransactions?: FieldPolicy | FieldReadFunction, + source?: FieldPolicy | FieldReadFunction, + bytecode?: FieldPolicy | FieldReadFunction, + abi?: FieldPolicy | FieldReadFunction, + ContractSource?: FieldPolicy | FieldReadFunction, + BlocksMined?: FieldPolicy | FieldReadFunction, + UserAuthed?: FieldPolicy | FieldReadFunction, + balance?: FieldPolicy | FieldReadFunction }; -export type TimerKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'stopedAt' | 'CreatedBy' | 'Task' | TimerKeySpecifier)[]; -export type TimerFieldPolicy = { +export type EthTransactionKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'chainId' | 'amount' | 'input' | 'index' | 'Sender' | 'Receiver' | 'Account' | 'address' | 'type' | 'v' | 'r' | 's' | 'Block' | EthTransactionKeySpecifier)[]; +export type EthTransactionFieldPolicy = { id?: FieldPolicy | FieldReadFunction, createdAt?: FieldPolicy | FieldReadFunction, updatedAt?: FieldPolicy | FieldReadFunction, - stopedAt?: FieldPolicy | FieldReadFunction, - CreatedBy?: FieldPolicy | FieldReadFunction, - Task?: FieldPolicy | FieldReadFunction + chainId?: FieldPolicy | FieldReadFunction, + amount?: FieldPolicy | FieldReadFunction, + input?: FieldPolicy | FieldReadFunction, + index?: FieldPolicy | FieldReadFunction, + Sender?: FieldPolicy | FieldReadFunction, + Receiver?: FieldPolicy | FieldReadFunction, + Account?: FieldPolicy | FieldReadFunction, + address?: FieldPolicy | FieldReadFunction, + type?: FieldPolicy | FieldReadFunction, + v?: FieldPolicy | FieldReadFunction, + r?: FieldPolicy | FieldReadFunction, + s?: FieldPolicy | FieldReadFunction, + Block?: FieldPolicy | FieldReadFunction }; -export type TaskReactionKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'CreatedBy' | 'Task' | 'type' | TaskReactionKeySpecifier)[]; -export type TaskReactionFieldPolicy = { +export type EthBlockKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'hash' | 'number' | 'difficulty' | 'totalDifficulty' | 'extraData' | 'gasLimit' | 'gasUsed' | 'mixHash' | 'nonce' | 'parentHash' | 'receiptsRoot' | 'sha3Uncles' | 'size' | 'stateRoot' | 'date' | 'Miner' | 'Transactions' | 'transactionsRoot' | 'transactions_count' | 'Uncles' | EthBlockKeySpecifier)[]; +export type EthBlockFieldPolicy = { id?: FieldPolicy | FieldReadFunction, createdAt?: FieldPolicy | FieldReadFunction, updatedAt?: FieldPolicy | FieldReadFunction, - CreatedBy?: FieldPolicy | FieldReadFunction, - Task?: FieldPolicy | FieldReadFunction, - type?: FieldPolicy | FieldReadFunction + hash?: FieldPolicy | FieldReadFunction, + number?: FieldPolicy | FieldReadFunction, + difficulty?: FieldPolicy | FieldReadFunction, + totalDifficulty?: FieldPolicy | FieldReadFunction, + extraData?: FieldPolicy | FieldReadFunction, + gasLimit?: FieldPolicy | FieldReadFunction, + gasUsed?: FieldPolicy | FieldReadFunction, + mixHash?: FieldPolicy | FieldReadFunction, + nonce?: FieldPolicy | FieldReadFunction, + parentHash?: FieldPolicy | FieldReadFunction, + receiptsRoot?: FieldPolicy | FieldReadFunction, + sha3Uncles?: FieldPolicy | FieldReadFunction, + size?: FieldPolicy | FieldReadFunction, + stateRoot?: FieldPolicy | FieldReadFunction, + date?: FieldPolicy | FieldReadFunction, + Miner?: FieldPolicy | FieldReadFunction, + Transactions?: FieldPolicy | FieldReadFunction, + transactionsRoot?: FieldPolicy | FieldReadFunction, + transactions_count?: FieldPolicy | FieldReadFunction, + Uncles?: FieldPolicy | FieldReadFunction }; -export type ChatRoomKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'description' | 'image' | 'code' | 'Members' | 'CreatedBy' | 'Messages' | 'isPublic' | 'allowAnonymous' | 'sandbox' | 'Invitations' | 'CallRequests' | 'Task' | 'Project' | ChatRoomKeySpecifier)[]; +export type ChatRoomKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'description' | 'image' | 'code' | 'Members' | 'CreatedBy' | 'Messages' | 'isPublic' | 'Invitations' | 'CallRequests' | ChatRoomKeySpecifier)[]; export type ChatRoomFieldPolicy = { id?: FieldPolicy | FieldReadFunction, createdAt?: FieldPolicy | FieldReadFunction, @@ -457,12 +355,8 @@ export type ChatRoomFieldPolicy = { CreatedBy?: FieldPolicy | FieldReadFunction, Messages?: FieldPolicy | FieldReadFunction, isPublic?: FieldPolicy | FieldReadFunction, - allowAnonymous?: FieldPolicy | FieldReadFunction, - sandbox?: FieldPolicy | FieldReadFunction, Invitations?: FieldPolicy | FieldReadFunction, - CallRequests?: FieldPolicy | FieldReadFunction, - Task?: FieldPolicy | FieldReadFunction, - Project?: FieldPolicy | FieldReadFunction + CallRequests?: FieldPolicy | FieldReadFunction }; export type ChatMessageKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'content' | 'contentText' | 'CreatedBy' | 'Room' | 'ReadedBy' | ChatMessageKeySpecifier)[]; export type ChatMessageFieldPolicy = { @@ -475,13 +369,12 @@ export type ChatMessageFieldPolicy = { Room?: FieldPolicy | FieldReadFunction, ReadedBy?: FieldPolicy | FieldReadFunction }; -export type ChatMessageReadedKeySpecifier = ('id' | 'createdAt' | 'Message' | 'User' | 'updatedAt' | ChatMessageReadedKeySpecifier)[]; +export type ChatMessageReadedKeySpecifier = ('id' | 'createdAt' | 'Message' | 'User' | ChatMessageReadedKeySpecifier)[]; export type ChatMessageReadedFieldPolicy = { id?: FieldPolicy | FieldReadFunction, createdAt?: FieldPolicy | FieldReadFunction, Message?: FieldPolicy | FieldReadFunction, - User?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction + User?: FieldPolicy | FieldReadFunction }; export type ChatRoomInvitationKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'CreatedBy' | 'User' | 'ChatRoom' | 'Notice' | ChatRoomInvitationKeySpecifier)[]; export type ChatRoomInvitationFieldPolicy = { @@ -493,22 +386,19 @@ export type ChatRoomInvitationFieldPolicy = { ChatRoom?: FieldPolicy | FieldReadFunction, Notice?: FieldPolicy | FieldReadFunction }; -export type NoticeKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'type' | 'User' | 'CreatedBy' | 'ChatMessage' | 'ChatRoomInvitation' | NoticeKeySpecifier)[]; +export type NoticeKeySpecifier = ('id' | 'createdAt' | 'type' | 'User' | 'CreatedBy' | 'ChatMessage' | 'ChatRoomInvitation' | NoticeKeySpecifier)[]; export type NoticeFieldPolicy = { id?: FieldPolicy | FieldReadFunction, createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, type?: FieldPolicy | FieldReadFunction, User?: FieldPolicy | FieldReadFunction, CreatedBy?: FieldPolicy | FieldReadFunction, ChatMessage?: FieldPolicy | FieldReadFunction, ChatRoomInvitation?: FieldPolicy | FieldReadFunction }; -export type CallRequestKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'called_descriptions' | 'caller_descriptions' | 'status' | 'startedAt' | 'endedAt' | 'Called' | 'Caller' | 'Room' | CallRequestKeySpecifier)[]; +export type CallRequestKeySpecifier = ('id' | 'called_descriptions' | 'caller_descriptions' | 'status' | 'startedAt' | 'endedAt' | 'Called' | 'Caller' | 'Room' | CallRequestKeySpecifier)[]; export type CallRequestFieldPolicy = { id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, called_descriptions?: FieldPolicy | FieldReadFunction, caller_descriptions?: FieldPolicy | FieldReadFunction, status?: FieldPolicy | FieldReadFunction, @@ -518,261 +408,200 @@ export type CallRequestFieldPolicy = { Caller?: FieldPolicy | FieldReadFunction, Room?: FieldPolicy | FieldReadFunction }; -export type CodeChallengeCompletionKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'CreatedBy' | 'CodeChallenge' | 'Task' | 'content' | 'success' | CodeChallengeCompletionKeySpecifier)[]; -export type CodeChallengeCompletionFieldPolicy = { +export type NotificationTypeKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'code' | 'comment' | 'Users' | 'CreatedBy' | NotificationTypeKeySpecifier)[]; +export type NotificationTypeFieldPolicy = { id?: FieldPolicy | FieldReadFunction, createdAt?: FieldPolicy | FieldReadFunction, updatedAt?: FieldPolicy | FieldReadFunction, - CreatedBy?: FieldPolicy | FieldReadFunction, - CodeChallenge?: FieldPolicy | FieldReadFunction, - Task?: FieldPolicy | FieldReadFunction, - content?: FieldPolicy | FieldReadFunction, - success?: FieldPolicy | FieldReadFunction + name?: FieldPolicy | FieldReadFunction, + code?: FieldPolicy | FieldReadFunction, + comment?: FieldPolicy | FieldReadFunction, + Users?: FieldPolicy | FieldReadFunction, + CreatedBy?: FieldPolicy | FieldReadFunction }; -export type CodeChallengeKeySpecifier = ('id' | 'externalKey' | 'createdAt' | 'updatedAt' | 'name' | 'dashedName' | 'localeTitle' | 'description' | 'challengeType' | 'forumTopicId' | 'translations' | 'tests' | 'solutions' | 'instructions' | 'files' | 'videoUrl' | 'order' | 'superOrder' | 'challengeOrder' | 'required' | 'isRequired' | 'isPrivate' | 'isBeta' | 'template' | 'time' | 'CreatedBy' | 'rank' | 'Block' | 'Completions' | 'Topic' | CodeChallengeKeySpecifier)[]; -export type CodeChallengeFieldPolicy = { +export type TopicKeySpecifier = ('id' | 'topic_id' | 'updatedAt' | 'createdAt' | 'created_at' | 'created_by' | 'name' | 'editor_content' | 'url_name' | 'type_id' | 'published' | 'description' | 'uri' | TopicKeySpecifier)[]; +export type TopicFieldPolicy = { id?: FieldPolicy | FieldReadFunction, - externalKey?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, + topic_id?: FieldPolicy | FieldReadFunction, updatedAt?: FieldPolicy | FieldReadFunction, + createdAt?: FieldPolicy | FieldReadFunction, + created_at?: FieldPolicy | FieldReadFunction, + created_by?: FieldPolicy | FieldReadFunction, name?: FieldPolicy | FieldReadFunction, - dashedName?: FieldPolicy | FieldReadFunction, - localeTitle?: FieldPolicy | FieldReadFunction, + editor_content?: FieldPolicy | FieldReadFunction, + url_name?: FieldPolicy | FieldReadFunction, + type_id?: FieldPolicy | FieldReadFunction, + published?: FieldPolicy | FieldReadFunction, description?: FieldPolicy | FieldReadFunction, - challengeType?: FieldPolicy | FieldReadFunction, - forumTopicId?: FieldPolicy | FieldReadFunction, - translations?: FieldPolicy | FieldReadFunction, - tests?: FieldPolicy | FieldReadFunction, - solutions?: FieldPolicy | FieldReadFunction, - instructions?: FieldPolicy | FieldReadFunction, - files?: FieldPolicy | FieldReadFunction, - videoUrl?: FieldPolicy | FieldReadFunction, - order?: FieldPolicy | FieldReadFunction, - superOrder?: FieldPolicy | FieldReadFunction, - challengeOrder?: FieldPolicy | FieldReadFunction, - required?: FieldPolicy | FieldReadFunction, - isRequired?: FieldPolicy | FieldReadFunction, - isPrivate?: FieldPolicy | FieldReadFunction, - isBeta?: FieldPolicy | FieldReadFunction, - template?: FieldPolicy | FieldReadFunction, - time?: FieldPolicy | FieldReadFunction, - CreatedBy?: FieldPolicy | FieldReadFunction, - rank?: FieldPolicy | FieldReadFunction, - Block?: FieldPolicy | FieldReadFunction, - Completions?: FieldPolicy | FieldReadFunction, - Topic?: FieldPolicy | FieldReadFunction + uri?: FieldPolicy | FieldReadFunction }; -export type CodeChallengeBlockKeySpecifier = ('id' | 'externalKey' | 'createdAt' | 'updatedAt' | 'name' | 'rank' | 'Parent' | 'Children' | 'CreatedBy' | 'Challenges' | CodeChallengeBlockKeySpecifier)[]; -export type CodeChallengeBlockFieldPolicy = { +export type CommentKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'comment_id' | 'object_id' | 'type_id' | 'editor_content' | 'is_checked' | 'name' | 'created_by' | 'parent' | 'uri' | CommentKeySpecifier)[]; +export type CommentFieldPolicy = { id?: FieldPolicy | FieldReadFunction, - externalKey?: FieldPolicy | FieldReadFunction, createdAt?: FieldPolicy | FieldReadFunction, updatedAt?: FieldPolicy | FieldReadFunction, + comment_id?: FieldPolicy | FieldReadFunction, + object_id?: FieldPolicy | FieldReadFunction, + type_id?: FieldPolicy | FieldReadFunction, + editor_content?: FieldPolicy | FieldReadFunction, + is_checked?: FieldPolicy | FieldReadFunction, name?: FieldPolicy | FieldReadFunction, - rank?: FieldPolicy | FieldReadFunction, - Parent?: FieldPolicy | FieldReadFunction, - Children?: FieldPolicy | FieldReadFunction, - CreatedBy?: FieldPolicy | FieldReadFunction, - Challenges?: FieldPolicy | FieldReadFunction + created_by?: FieldPolicy | FieldReadFunction, + parent?: FieldPolicy | FieldReadFunction, + uri?: FieldPolicy | FieldReadFunction }; -export type TeamKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'Parent' | 'Childs' | 'CreatedBy' | 'Members' | 'Projects' | 'OrderedProjects' | 'status' | 'oldID' | 'address' | 'website' | 'email' | 'phone' | 'Resource' | TeamKeySpecifier)[]; -export type TeamFieldPolicy = { +export type UserTarifKeySpecifier = ('id' | 'User' | 'Tarif' | 'createdAt' | 'dateTill' | UserTarifKeySpecifier)[]; +export type UserTarifFieldPolicy = { id?: FieldPolicy | FieldReadFunction, + User?: FieldPolicy | FieldReadFunction, + Tarif?: FieldPolicy | FieldReadFunction, createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - name?: FieldPolicy | FieldReadFunction, - Parent?: FieldPolicy | FieldReadFunction, - Childs?: FieldPolicy | FieldReadFunction, - CreatedBy?: FieldPolicy | FieldReadFunction, - Members?: FieldPolicy | FieldReadFunction, - Projects?: FieldPolicy | FieldReadFunction, - OrderedProjects?: FieldPolicy | FieldReadFunction, - status?: FieldPolicy | FieldReadFunction, - oldID?: FieldPolicy | FieldReadFunction, - address?: FieldPolicy | FieldReadFunction, - website?: FieldPolicy | FieldReadFunction, - email?: FieldPolicy | FieldReadFunction, - phone?: FieldPolicy | FieldReadFunction, - Resource?: FieldPolicy | FieldReadFunction + dateTill?: FieldPolicy | FieldReadFunction }; -export type TeamMemberKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'Team' | 'User' | 'CreatedBy' | 'status' | TeamMemberKeySpecifier)[]; -export type TeamMemberFieldPolicy = { +export type TarifKeySpecifier = ('id' | 'name' | 'active' | 'maxPriceItems' | 'price' | 'UserTarifs' | 'allowIcon' | 'allowBanner' | TarifKeySpecifier)[]; +export type TarifFieldPolicy = { id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - Team?: FieldPolicy | FieldReadFunction, - User?: FieldPolicy | FieldReadFunction, - CreatedBy?: FieldPolicy | FieldReadFunction, - status?: FieldPolicy | FieldReadFunction + name?: FieldPolicy | FieldReadFunction, + active?: FieldPolicy | FieldReadFunction, + maxPriceItems?: FieldPolicy | FieldReadFunction, + price?: FieldPolicy | FieldReadFunction, + UserTarifs?: FieldPolicy | FieldReadFunction, + allowIcon?: FieldPolicy | FieldReadFunction, + allowBanner?: FieldPolicy | FieldReadFunction }; -export type EthAccountKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'description' | 'address' | 'type' | 'CreatedBy' | 'Transaction' | 'IncomeTransactions' | 'OutcomeTransactions' | 'source' | 'bytecode' | 'abi' | 'ContractSource' | 'BlocksMined' | 'UserAuthed' | 'Project' | 'Resources' | 'balance' | EthAccountKeySpecifier)[]; -export type EthAccountFieldPolicy = { +export type AccountKeySpecifier = ('id' | 'balance' | 'User' | 'Transactions' | AccountKeySpecifier)[]; +export type AccountFieldPolicy = { id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - name?: FieldPolicy | FieldReadFunction, - description?: FieldPolicy | FieldReadFunction, - address?: FieldPolicy | FieldReadFunction, - type?: FieldPolicy | FieldReadFunction, - CreatedBy?: FieldPolicy | FieldReadFunction, - Transaction?: FieldPolicy | FieldReadFunction, - IncomeTransactions?: FieldPolicy | FieldReadFunction, - OutcomeTransactions?: FieldPolicy | FieldReadFunction, - source?: FieldPolicy | FieldReadFunction, - bytecode?: FieldPolicy | FieldReadFunction, - abi?: FieldPolicy | FieldReadFunction, - ContractSource?: FieldPolicy | FieldReadFunction, - BlocksMined?: FieldPolicy | FieldReadFunction, - UserAuthed?: FieldPolicy | FieldReadFunction, - Project?: FieldPolicy | FieldReadFunction, - Resources?: FieldPolicy | FieldReadFunction, - balance?: FieldPolicy | FieldReadFunction + balance?: FieldPolicy | FieldReadFunction, + User?: FieldPolicy | FieldReadFunction, + Transactions?: FieldPolicy | FieldReadFunction }; -export type EthTransactionKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'chainId' | 'amount' | 'input' | 'index' | 'Sender' | 'Receiver' | 'Account' | 'address' | 'type' | 'v' | 'r' | 's' | 'Block' | EthTransactionKeySpecifier)[]; -export type EthTransactionFieldPolicy = { +export type TransactionKeySpecifier = ('id' | 'createdAt' | 'amount' | 'Account' | 'CreatedBy' | TransactionKeySpecifier)[]; +export type TransactionFieldPolicy = { id?: FieldPolicy | FieldReadFunction, createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - chainId?: FieldPolicy | FieldReadFunction, amount?: FieldPolicy | FieldReadFunction, - input?: FieldPolicy | FieldReadFunction, - index?: FieldPolicy | FieldReadFunction, - Sender?: FieldPolicy | FieldReadFunction, - Receiver?: FieldPolicy | FieldReadFunction, Account?: FieldPolicy | FieldReadFunction, - address?: FieldPolicy | FieldReadFunction, - type?: FieldPolicy | FieldReadFunction, - v?: FieldPolicy | FieldReadFunction, - r?: FieldPolicy | FieldReadFunction, - s?: FieldPolicy | FieldReadFunction, - Block?: FieldPolicy | FieldReadFunction + CreatedBy?: FieldPolicy | FieldReadFunction }; -export type EthBlockKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'hash' | 'number' | 'difficulty' | 'totalDifficulty' | 'extraData' | 'gasLimit' | 'gasUsed' | 'mixHash' | 'nonce' | 'parentHash' | 'receiptsRoot' | 'sha3Uncles' | 'size' | 'stateRoot' | 'date' | 'Miner' | 'Transactions' | 'transactionsRoot' | 'transactions_count' | 'Uncles' | EthBlockKeySpecifier)[]; -export type EthBlockFieldPolicy = { +export type PlaceKeySpecifier = ('minPrice' | 'maxPrice' | 'uri' | 'id' | 'updatedAt' | 'createdAt' | 'place_id' | 'name' | 'description' | 'address' | 'lng' | 'lat' | 'website' | 'phone' | 'work_hours' | 'metro' | 'content' | 'schedules' | 'url_name' | 'image' | 'gallery' | 'is_bar' | 'is_shop' | 'is_brewery' | 'active' | 'email' | 'beers' | 'Owner' | 'Letters' | 'best' | 'is_request' | PlaceKeySpecifier)[]; +export type PlaceFieldPolicy = { + minPrice?: FieldPolicy | FieldReadFunction, + maxPrice?: FieldPolicy | FieldReadFunction, + uri?: FieldPolicy | FieldReadFunction, id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, updatedAt?: FieldPolicy | FieldReadFunction, - hash?: FieldPolicy | FieldReadFunction, - number?: FieldPolicy | FieldReadFunction, - difficulty?: FieldPolicy | FieldReadFunction, - totalDifficulty?: FieldPolicy | FieldReadFunction, - extraData?: FieldPolicy | FieldReadFunction, - gasLimit?: FieldPolicy | FieldReadFunction, - gasUsed?: FieldPolicy | FieldReadFunction, - mixHash?: FieldPolicy | FieldReadFunction, - nonce?: FieldPolicy | FieldReadFunction, - parentHash?: FieldPolicy | FieldReadFunction, - receiptsRoot?: FieldPolicy | FieldReadFunction, - sha3Uncles?: FieldPolicy | FieldReadFunction, - size?: FieldPolicy | FieldReadFunction, - stateRoot?: FieldPolicy | FieldReadFunction, - date?: FieldPolicy | FieldReadFunction, - Miner?: FieldPolicy | FieldReadFunction, - Transactions?: FieldPolicy | FieldReadFunction, - transactionsRoot?: FieldPolicy | FieldReadFunction, - transactions_count?: FieldPolicy | FieldReadFunction, - Uncles?: FieldPolicy | FieldReadFunction -}; -export type EthContractSourceKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'description' | 'source' | 'CreatedBy' | 'Accounts' | EthContractSourceKeySpecifier)[]; -export type EthContractSourceFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, + place_id?: FieldPolicy | FieldReadFunction, name?: FieldPolicy | FieldReadFunction, description?: FieldPolicy | FieldReadFunction, - source?: FieldPolicy | FieldReadFunction, - CreatedBy?: FieldPolicy | FieldReadFunction, - Accounts?: FieldPolicy | FieldReadFunction -}; -export type ServiceCategoryKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'description' | 'code' | 'CreatedBy' | 'Services' | 'Parent' | 'Childs' | ServiceCategoryKeySpecifier)[]; -export type ServiceCategoryFieldPolicy = { + address?: FieldPolicy | FieldReadFunction, + lng?: FieldPolicy | FieldReadFunction, + lat?: FieldPolicy | FieldReadFunction, + website?: FieldPolicy | FieldReadFunction, + phone?: FieldPolicy | FieldReadFunction, + work_hours?: FieldPolicy | FieldReadFunction, + metro?: FieldPolicy | FieldReadFunction, + content?: FieldPolicy | FieldReadFunction, + schedules?: FieldPolicy | FieldReadFunction, + url_name?: FieldPolicy | FieldReadFunction, + image?: FieldPolicy | FieldReadFunction, + gallery?: FieldPolicy | FieldReadFunction, + is_bar?: FieldPolicy | FieldReadFunction, + is_shop?: FieldPolicy | FieldReadFunction, + is_brewery?: FieldPolicy | FieldReadFunction, + active?: FieldPolicy | FieldReadFunction, + email?: FieldPolicy | FieldReadFunction, + beers?: FieldPolicy | FieldReadFunction, + Owner?: FieldPolicy | FieldReadFunction, + Letters?: FieldPolicy | FieldReadFunction, + best?: FieldPolicy | FieldReadFunction, + is_request?: FieldPolicy | FieldReadFunction +}; +export type PlaceBeerKeySpecifier = ('id' | 'price' | 'Place' | 'Beer' | PlaceBeerKeySpecifier)[]; +export type PlaceBeerFieldPolicy = { + id?: FieldPolicy | FieldReadFunction, + price?: FieldPolicy | FieldReadFunction, + Place?: FieldPolicy | FieldReadFunction, + Beer?: FieldPolicy | FieldReadFunction +}; +export type BeerKeySpecifier = ('container_str' | 'uri' | 'id' | 'createdAt' | 'updatedAt' | 'beer_id' | 'name' | 'url_name' | 'description' | 'editor_content' | 'country' | 'image' | 'num_comments' | 'num_photos' | 'manufacturer' | 'region' | 'manufacture_years' | 'container' | 'alcohol' | 'wort_percent' | 'components' | 'bitter' | 'type_id' | 'color' | 'is_request' | 'rating' | 'add_user_id' | 'created_at' | 'gallery' | 'places' | 'filtered' | 'pasteurized' | BeerKeySpecifier)[]; +export type BeerFieldPolicy = { + container_str?: FieldPolicy | FieldReadFunction, + uri?: FieldPolicy | FieldReadFunction, id?: FieldPolicy | FieldReadFunction, createdAt?: FieldPolicy | FieldReadFunction, updatedAt?: FieldPolicy | FieldReadFunction, + beer_id?: FieldPolicy | FieldReadFunction, name?: FieldPolicy | FieldReadFunction, + url_name?: FieldPolicy | FieldReadFunction, description?: FieldPolicy | FieldReadFunction, - code?: FieldPolicy | FieldReadFunction, - CreatedBy?: FieldPolicy | FieldReadFunction, - Services?: FieldPolicy | FieldReadFunction, - Parent?: FieldPolicy | FieldReadFunction, - Childs?: FieldPolicy | FieldReadFunction + editor_content?: FieldPolicy | FieldReadFunction, + country?: FieldPolicy | FieldReadFunction, + image?: FieldPolicy | FieldReadFunction, + num_comments?: FieldPolicy | FieldReadFunction, + num_photos?: FieldPolicy | FieldReadFunction, + manufacturer?: FieldPolicy | FieldReadFunction, + region?: FieldPolicy | FieldReadFunction, + manufacture_years?: FieldPolicy | FieldReadFunction, + container?: FieldPolicy | FieldReadFunction, + alcohol?: FieldPolicy | FieldReadFunction, + wort_percent?: FieldPolicy | FieldReadFunction, + components?: FieldPolicy | FieldReadFunction, + bitter?: FieldPolicy | FieldReadFunction, + type_id?: FieldPolicy | FieldReadFunction, + color?: FieldPolicy | FieldReadFunction, + is_request?: FieldPolicy | FieldReadFunction, + rating?: FieldPolicy | FieldReadFunction, + add_user_id?: FieldPolicy | FieldReadFunction, + created_at?: FieldPolicy | FieldReadFunction, + gallery?: FieldPolicy | FieldReadFunction, + places?: FieldPolicy | FieldReadFunction, + filtered?: FieldPolicy | FieldReadFunction, + pasteurized?: FieldPolicy | FieldReadFunction }; -export type NotificationTypeKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'code' | 'comment' | 'Users' | 'CreatedBy' | 'oldID' | NotificationTypeKeySpecifier)[]; -export type NotificationTypeFieldPolicy = { +export type LetterKeySpecifier = ('id' | 'email' | 'subject' | 'message' | 'status' | 'rank' | 'deleteOnSend' | 'replyTo' | 'returnTo' | 'Place' | LetterKeySpecifier)[]; +export type LetterFieldPolicy = { id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - name?: FieldPolicy | FieldReadFunction, - code?: FieldPolicy | FieldReadFunction, - comment?: FieldPolicy | FieldReadFunction, - Users?: FieldPolicy | FieldReadFunction, - CreatedBy?: FieldPolicy | FieldReadFunction, - oldID?: FieldPolicy | FieldReadFunction + email?: FieldPolicy | FieldReadFunction, + subject?: FieldPolicy | FieldReadFunction, + message?: FieldPolicy | FieldReadFunction, + status?: FieldPolicy | FieldReadFunction, + rank?: FieldPolicy | FieldReadFunction, + deleteOnSend?: FieldPolicy | FieldReadFunction, + replyTo?: FieldPolicy | FieldReadFunction, + returnTo?: FieldPolicy | FieldReadFunction, + Place?: FieldPolicy | FieldReadFunction }; -export type WorldKeySpecifier = ('createdAt' | 'updatedAt' | 'CreatedBy' | 'id' | 'name' | 'seed' | 'type' | 'time' | 'timeChanger' | 'days' | 'lastPlayed' | 'changedBlocks' | 'players' | 'messages' | WorldKeySpecifier)[]; -export type WorldFieldPolicy = { - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - CreatedBy?: FieldPolicy | FieldReadFunction, - id?: FieldPolicy | FieldReadFunction, - name?: FieldPolicy | FieldReadFunction, - seed?: FieldPolicy | FieldReadFunction, - type?: FieldPolicy | FieldReadFunction, - time?: FieldPolicy | FieldReadFunction, - timeChanger?: FieldPolicy | FieldReadFunction, - days?: FieldPolicy | FieldReadFunction, - lastPlayed?: FieldPolicy | FieldReadFunction, - changedBlocks?: FieldPolicy | FieldReadFunction, - players?: FieldPolicy | FieldReadFunction, - messages?: FieldPolicy | FieldReadFunction -}; -export type BlockKeySpecifier = ('id' | 'representation' | 'type' | 'world' | 'x' | 'y' | 'z' | BlockKeySpecifier)[]; -export type BlockFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - representation?: FieldPolicy | FieldReadFunction, - type?: FieldPolicy | FieldReadFunction, - world?: FieldPolicy | FieldReadFunction, - x?: FieldPolicy | FieldReadFunction, - y?: FieldPolicy | FieldReadFunction, - z?: FieldPolicy | FieldReadFunction +export type MapPlaceConnectionKeySpecifier = ('aggregate' | 'edges' | MapPlaceConnectionKeySpecifier)[]; +export type MapPlaceConnectionFieldPolicy = { + aggregate?: FieldPolicy | FieldReadFunction, + edges?: FieldPolicy | FieldReadFunction }; -export type PlayerKeySpecifier = ('createdAt' | 'updatedAt' | 'id' | 'isAdmin' | 'gamemode' | 'user' | 'world' | 'lastLogin' | 'x' | 'y' | 'z' | 'dirx' | 'diry' | 'inventory' | PlayerKeySpecifier)[]; -export type PlayerFieldPolicy = { - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - id?: FieldPolicy | FieldReadFunction, - isAdmin?: FieldPolicy | FieldReadFunction, - gamemode?: FieldPolicy | FieldReadFunction, - user?: FieldPolicy | FieldReadFunction, - world?: FieldPolicy | FieldReadFunction, - lastLogin?: FieldPolicy | FieldReadFunction, - x?: FieldPolicy | FieldReadFunction, - y?: FieldPolicy | FieldReadFunction, - z?: FieldPolicy | FieldReadFunction, - dirx?: FieldPolicy | FieldReadFunction, - diry?: FieldPolicy | FieldReadFunction, - inventory?: FieldPolicy | FieldReadFunction -}; -export type InventoryKeySpecifier = ('id' | 'player' | 'cursor' | 'data' | InventoryKeySpecifier)[]; -export type InventoryFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - player?: FieldPolicy | FieldReadFunction, - cursor?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction +export type AggregatePlaceKeySpecifier = ('count' | AggregatePlaceKeySpecifier)[]; +export type AggregatePlaceFieldPolicy = { + count?: FieldPolicy | FieldReadFunction }; -export type MessageKeySpecifier = ('id' | 'world' | 'type' | 'sender' | 'body' | MessageKeySpecifier)[]; -export type MessageFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - world?: FieldPolicy | FieldReadFunction, - type?: FieldPolicy | FieldReadFunction, - sender?: FieldPolicy | FieldReadFunction, - body?: FieldPolicy | FieldReadFunction +export type PlaceEdgeKeySpecifier = ('node' | 'cursor' | PlaceEdgeKeySpecifier)[]; +export type PlaceEdgeFieldPolicy = { + node?: FieldPolicy | FieldReadFunction, + cursor?: FieldPolicy | FieldReadFunction }; -export type SettingsKeySpecifier = ('id' | 'renderDistance' | 'User' | SettingsKeySpecifier)[]; -export type SettingsFieldPolicy = { +export type mapGeoObjectsConnectionKeySpecifier = ('aggregate' | 'objects' | mapGeoObjectsConnectionKeySpecifier)[]; +export type mapGeoObjectsConnectionFieldPolicy = { + aggregate?: FieldPolicy | FieldReadFunction, + objects?: FieldPolicy | FieldReadFunction +}; +export type RouteKeySpecifier = ('id' | 'name' | 'path' | 'exact' | 'component' | 'Parent' | 'Childs' | 'CreatedBy' | RouteKeySpecifier)[]; +export type RouteFieldPolicy = { id?: FieldPolicy | FieldReadFunction, - renderDistance?: FieldPolicy | FieldReadFunction, - User?: FieldPolicy | FieldReadFunction + name?: FieldPolicy | FieldReadFunction, + path?: FieldPolicy | FieldReadFunction, + exact?: FieldPolicy | FieldReadFunction, + component?: FieldPolicy | FieldReadFunction, + Parent?: FieldPolicy | FieldReadFunction, + Childs?: FieldPolicy | FieldReadFunction, + CreatedBy?: FieldPolicy | FieldReadFunction }; export type GameKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'start_date' | 'end_date' | 'sequence' | 'CreatedBy' | 'Tourney' | 'Users' | 'Teams' | 'Parent' | 'Childs' | 'Results' | GameKeySpecifier)[]; export type GameFieldPolicy = { @@ -791,7 +620,7 @@ export type GameFieldPolicy = { Childs?: FieldPolicy | FieldReadFunction, Results?: FieldPolicy | FieldReadFunction }; -export type TourneyKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'code' | 'date' | 'date_till' | 'CreatedBy' | 'Tournament' | 'Players' | 'Games' | TourneyKeySpecifier)[]; +export type TourneyKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'code' | 'date' | 'date_till' | 'CreatedBy' | 'Tournament' | 'Users' | 'Games' | TourneyKeySpecifier)[]; export type TourneyFieldPolicy = { id?: FieldPolicy | FieldReadFunction, createdAt?: FieldPolicy | FieldReadFunction, @@ -802,7 +631,7 @@ export type TourneyFieldPolicy = { date_till?: FieldPolicy | FieldReadFunction, CreatedBy?: FieldPolicy | FieldReadFunction, Tournament?: FieldPolicy | FieldReadFunction, - Players?: FieldPolicy | FieldReadFunction, + Users?: FieldPolicy | FieldReadFunction, Games?: FieldPolicy | FieldReadFunction }; export type TournamentKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'code' | 'CreatedBy' | 'Tourneys' | 'Group' | TournamentKeySpecifier)[]; @@ -826,11 +655,9 @@ export type TournamentGroupFieldPolicy = { CreatedBy?: FieldPolicy | FieldReadFunction, Tournaments?: FieldPolicy | FieldReadFunction }; -export type TourneyPlayerKeySpecifier = ('id' | 'Tourney' | 'User' | TourneyPlayerKeySpecifier)[]; -export type TourneyPlayerFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - Tourney?: FieldPolicy | FieldReadFunction, - User?: FieldPolicy | FieldReadFunction +export type TeamKeySpecifier = ('id' | TeamKeySpecifier)[]; +export type TeamFieldPolicy = { + id?: FieldPolicy | FieldReadFunction }; export type GameResultKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'date' | 'name' | 'CreatedBy' | 'User' | 'Team' | 'Game' | 'value' | GameResultKeySpecifier)[]; export type GameResultFieldPolicy = { @@ -845,105 +672,17 @@ export type GameResultFieldPolicy = { Game?: FieldPolicy | FieldReadFunction, value?: FieldPolicy | FieldReadFunction }; -export type PositionKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'code' | 'name' | 'CreatedBy' | 'Users' | PositionKeySpecifier)[]; -export type PositionFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - code?: FieldPolicy | FieldReadFunction, - name?: FieldPolicy | FieldReadFunction, - CreatedBy?: FieldPolicy | FieldReadFunction, - Users?: FieldPolicy | FieldReadFunction -}; -export type RouteKeySpecifier = ('id' | 'name' | 'path' | 'exact' | 'component' | 'Parent' | 'Childs' | 'CreatedBy' | RouteKeySpecifier)[]; -export type RouteFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - name?: FieldPolicy | FieldReadFunction, - path?: FieldPolicy | FieldReadFunction, - exact?: FieldPolicy | FieldReadFunction, - component?: FieldPolicy | FieldReadFunction, - Parent?: FieldPolicy | FieldReadFunction, - Childs?: FieldPolicy | FieldReadFunction, - CreatedBy?: FieldPolicy | FieldReadFunction -}; -export type CommentKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'components' | 'contentText' | 'CreatedBy' | 'TechnologyLesson' | CommentKeySpecifier)[]; -export type CommentFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - components?: FieldPolicy | FieldReadFunction, - contentText?: FieldPolicy | FieldReadFunction, - CreatedBy?: FieldPolicy | FieldReadFunction, - TechnologyLesson?: FieldPolicy | FieldReadFunction -}; -export type TechnologyLessonKeySpecifier = ('id' | 'name' | 'components' | 'contentText' | 'Technology' | 'CreatedBy' | 'Users' | 'Comments' | TechnologyLessonKeySpecifier)[]; -export type TechnologyLessonFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - name?: FieldPolicy | FieldReadFunction, - components?: FieldPolicy | FieldReadFunction, - contentText?: FieldPolicy | FieldReadFunction, - Technology?: FieldPolicy | FieldReadFunction, - CreatedBy?: FieldPolicy | FieldReadFunction, - Users?: FieldPolicy | FieldReadFunction, - Comments?: FieldPolicy | FieldReadFunction -}; -export type TechnologyKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'components' | 'contentText' | 'site_url' | 'CreatedBy' | 'UserTechnologies' | TechnologyKeySpecifier)[]; -export type TechnologyFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - name?: FieldPolicy | FieldReadFunction, - components?: FieldPolicy | FieldReadFunction, - contentText?: FieldPolicy | FieldReadFunction, - site_url?: FieldPolicy | FieldReadFunction, - CreatedBy?: FieldPolicy | FieldReadFunction, - UserTechnologies?: FieldPolicy | FieldReadFunction -}; -export type UserTechnologyKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'CreatedBy' | 'Technology' | 'components' | 'date_from' | 'date_till' | 'status' | UserTechnologyKeySpecifier)[]; -export type UserTechnologyFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - CreatedBy?: FieldPolicy | FieldReadFunction, - Technology?: FieldPolicy | FieldReadFunction, - components?: FieldPolicy | FieldReadFunction, - date_from?: FieldPolicy | FieldReadFunction, - date_till?: FieldPolicy | FieldReadFunction, - status?: FieldPolicy | FieldReadFunction -}; -export type TechnologyLessonUserKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'Lesson' | 'CreatedBy' | 'status' | 'completedAt' | TechnologyLessonUserKeySpecifier)[]; -export type TechnologyLessonUserFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - Lesson?: FieldPolicy | FieldReadFunction, - CreatedBy?: FieldPolicy | FieldReadFunction, - status?: FieldPolicy | FieldReadFunction, - completedAt?: FieldPolicy | FieldReadFunction -}; -export type CareerKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'CreatedBy' | 'name' | 'description' | 'start_date' | CareerKeySpecifier)[]; -export type CareerFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - CreatedBy?: FieldPolicy | FieldReadFunction, - name?: FieldPolicy | FieldReadFunction, - description?: FieldPolicy | FieldReadFunction, - start_date?: FieldPolicy | FieldReadFunction -}; -export type TestKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'text' | 'quantity' | 'date' | 'CreatedBy' | TestKeySpecifier)[]; -export type TestFieldPolicy = { +export type CityKeySpecifier = ('id' | 'city_id' | 'name' | 'alias' | 'lat' | 'lng' | CityKeySpecifier)[]; +export type CityFieldPolicy = { id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, + city_id?: FieldPolicy | FieldReadFunction, name?: FieldPolicy | FieldReadFunction, - text?: FieldPolicy | FieldReadFunction, - quantity?: FieldPolicy | FieldReadFunction, - date?: FieldPolicy | FieldReadFunction, - CreatedBy?: FieldPolicy | FieldReadFunction + alias?: FieldPolicy | FieldReadFunction, + lat?: FieldPolicy | FieldReadFunction, + lng?: FieldPolicy | FieldReadFunction }; -export type GalleryConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | GalleryConnectionKeySpecifier)[]; -export type GalleryConnectionFieldPolicy = { +export type RouteConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | RouteConnectionKeySpecifier)[]; +export type RouteConnectionFieldPolicy = { pageInfo?: FieldPolicy | FieldReadFunction, edges?: FieldPolicy | FieldReadFunction, aggregate?: FieldPolicy | FieldReadFunction @@ -955,118 +694,148 @@ export type PageInfoFieldPolicy = { startCursor?: FieldPolicy | FieldReadFunction, endCursor?: FieldPolicy | FieldReadFunction }; -export type GalleryEdgeKeySpecifier = ('node' | 'cursor' | GalleryEdgeKeySpecifier)[]; -export type GalleryEdgeFieldPolicy = { +export type RouteEdgeKeySpecifier = ('node' | 'cursor' | RouteEdgeKeySpecifier)[]; +export type RouteEdgeFieldPolicy = { node?: FieldPolicy | FieldReadFunction, cursor?: FieldPolicy | FieldReadFunction }; -export type AggregateGalleryKeySpecifier = ('count' | AggregateGalleryKeySpecifier)[]; -export type AggregateGalleryFieldPolicy = { +export type AggregateRouteKeySpecifier = ('count' | AggregateRouteKeySpecifier)[]; +export type AggregateRouteFieldPolicy = { count?: FieldPolicy | FieldReadFunction }; -export type WorldConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | WorldConnectionKeySpecifier)[]; -export type WorldConnectionFieldPolicy = { +export type EthAccountConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | EthAccountConnectionKeySpecifier)[]; +export type EthAccountConnectionFieldPolicy = { pageInfo?: FieldPolicy | FieldReadFunction, edges?: FieldPolicy | FieldReadFunction, aggregate?: FieldPolicy | FieldReadFunction }; -export type WorldEdgeKeySpecifier = ('node' | 'cursor' | WorldEdgeKeySpecifier)[]; -export type WorldEdgeFieldPolicy = { +export type EthAccountEdgeKeySpecifier = ('node' | 'cursor' | EthAccountEdgeKeySpecifier)[]; +export type EthAccountEdgeFieldPolicy = { node?: FieldPolicy | FieldReadFunction, cursor?: FieldPolicy | FieldReadFunction }; -export type AggregateWorldKeySpecifier = ('count' | AggregateWorldKeySpecifier)[]; -export type AggregateWorldFieldPolicy = { +export type AggregateEthAccountKeySpecifier = ('count' | AggregateEthAccountKeySpecifier)[]; +export type AggregateEthAccountFieldPolicy = { count?: FieldPolicy | FieldReadFunction }; -export type NoticeConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | NoticeConnectionKeySpecifier)[]; -export type NoticeConnectionFieldPolicy = { +export type EthTransactionConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | EthTransactionConnectionKeySpecifier)[]; +export type EthTransactionConnectionFieldPolicy = { pageInfo?: FieldPolicy | FieldReadFunction, edges?: FieldPolicy | FieldReadFunction, aggregate?: FieldPolicy | FieldReadFunction }; -export type NoticeEdgeKeySpecifier = ('node' | 'cursor' | NoticeEdgeKeySpecifier)[]; -export type NoticeEdgeFieldPolicy = { +export type EthTransactionEdgeKeySpecifier = ('node' | 'cursor' | EthTransactionEdgeKeySpecifier)[]; +export type EthTransactionEdgeFieldPolicy = { node?: FieldPolicy | FieldReadFunction, cursor?: FieldPolicy | FieldReadFunction }; -export type AggregateNoticeKeySpecifier = ('count' | AggregateNoticeKeySpecifier)[]; -export type AggregateNoticeFieldPolicy = { +export type AggregateEthTransactionKeySpecifier = ('count' | AggregateEthTransactionKeySpecifier)[]; +export type AggregateEthTransactionFieldPolicy = { count?: FieldPolicy | FieldReadFunction }; -export type NotificationTypeConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | NotificationTypeConnectionKeySpecifier)[]; -export type NotificationTypeConnectionFieldPolicy = { +export type ResourceConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | ResourceConnectionKeySpecifier)[]; +export type ResourceConnectionFieldPolicy = { pageInfo?: FieldPolicy | FieldReadFunction, edges?: FieldPolicy | FieldReadFunction, aggregate?: FieldPolicy | FieldReadFunction }; -export type NotificationTypeEdgeKeySpecifier = ('node' | 'cursor' | NotificationTypeEdgeKeySpecifier)[]; -export type NotificationTypeEdgeFieldPolicy = { +export type ResourceEdgeKeySpecifier = ('node' | 'cursor' | ResourceEdgeKeySpecifier)[]; +export type ResourceEdgeFieldPolicy = { node?: FieldPolicy | FieldReadFunction, cursor?: FieldPolicy | FieldReadFunction }; -export type AggregateNotificationTypeKeySpecifier = ('count' | AggregateNotificationTypeKeySpecifier)[]; -export type AggregateNotificationTypeFieldPolicy = { +export type AggregateResourceKeySpecifier = ('count' | AggregateResourceKeySpecifier)[]; +export type AggregateResourceFieldPolicy = { count?: FieldPolicy | FieldReadFunction }; -export type ResourceTagConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | ResourceTagConnectionKeySpecifier)[]; -export type ResourceTagConnectionFieldPolicy = { +export type ChatMessageReadedConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | ChatMessageReadedConnectionKeySpecifier)[]; +export type ChatMessageReadedConnectionFieldPolicy = { pageInfo?: FieldPolicy | FieldReadFunction, edges?: FieldPolicy | FieldReadFunction, aggregate?: FieldPolicy | FieldReadFunction }; -export type ResourceTagEdgeKeySpecifier = ('node' | 'cursor' | ResourceTagEdgeKeySpecifier)[]; -export type ResourceTagEdgeFieldPolicy = { +export type ChatMessageReadedEdgeKeySpecifier = ('node' | 'cursor' | ChatMessageReadedEdgeKeySpecifier)[]; +export type ChatMessageReadedEdgeFieldPolicy = { node?: FieldPolicy | FieldReadFunction, cursor?: FieldPolicy | FieldReadFunction }; -export type AggregateResourceTagKeySpecifier = ('count' | AggregateResourceTagKeySpecifier)[]; -export type AggregateResourceTagFieldPolicy = { +export type AggregateChatMessageReadedKeySpecifier = ('count' | AggregateChatMessageReadedKeySpecifier)[]; +export type AggregateChatMessageReadedFieldPolicy = { count?: FieldPolicy | FieldReadFunction }; -export type TagConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | TagConnectionKeySpecifier)[]; -export type TagConnectionFieldPolicy = { +export type ChatRoomConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | ChatRoomConnectionKeySpecifier)[]; +export type ChatRoomConnectionFieldPolicy = { pageInfo?: FieldPolicy | FieldReadFunction, edges?: FieldPolicy | FieldReadFunction, aggregate?: FieldPolicy | FieldReadFunction }; -export type TagEdgeKeySpecifier = ('node' | 'cursor' | TagEdgeKeySpecifier)[]; -export type TagEdgeFieldPolicy = { +export type ChatRoomEdgeKeySpecifier = ('node' | 'cursor' | ChatRoomEdgeKeySpecifier)[]; +export type ChatRoomEdgeFieldPolicy = { node?: FieldPolicy | FieldReadFunction, cursor?: FieldPolicy | FieldReadFunction }; -export type AggregateTagKeySpecifier = ('count' | AggregateTagKeySpecifier)[]; -export type AggregateTagFieldPolicy = { +export type AggregateChatRoomKeySpecifier = ('count' | AggregateChatRoomKeySpecifier)[]; +export type AggregateChatRoomFieldPolicy = { count?: FieldPolicy | FieldReadFunction }; -export type VoteConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | VoteConnectionKeySpecifier)[]; -export type VoteConnectionFieldPolicy = { +export type NoticeConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | NoticeConnectionKeySpecifier)[]; +export type NoticeConnectionFieldPolicy = { pageInfo?: FieldPolicy | FieldReadFunction, edges?: FieldPolicy | FieldReadFunction, aggregate?: FieldPolicy | FieldReadFunction }; -export type VoteEdgeKeySpecifier = ('node' | 'cursor' | VoteEdgeKeySpecifier)[]; -export type VoteEdgeFieldPolicy = { +export type NoticeEdgeKeySpecifier = ('node' | 'cursor' | NoticeEdgeKeySpecifier)[]; +export type NoticeEdgeFieldPolicy = { node?: FieldPolicy | FieldReadFunction, cursor?: FieldPolicy | FieldReadFunction }; -export type AggregateVoteKeySpecifier = ('count' | AggregateVoteKeySpecifier)[]; -export type AggregateVoteFieldPolicy = { +export type AggregateNoticeKeySpecifier = ('count' | AggregateNoticeKeySpecifier)[]; +export type AggregateNoticeFieldPolicy = { count?: FieldPolicy | FieldReadFunction }; -export type ChatRoomConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | ChatRoomConnectionKeySpecifier)[]; -export type ChatRoomConnectionFieldPolicy = { +export type NotificationTypeConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | NotificationTypeConnectionKeySpecifier)[]; +export type NotificationTypeConnectionFieldPolicy = { pageInfo?: FieldPolicy | FieldReadFunction, edges?: FieldPolicy | FieldReadFunction, aggregate?: FieldPolicy | FieldReadFunction }; -export type ChatRoomEdgeKeySpecifier = ('node' | 'cursor' | ChatRoomEdgeKeySpecifier)[]; -export type ChatRoomEdgeFieldPolicy = { +export type NotificationTypeEdgeKeySpecifier = ('node' | 'cursor' | NotificationTypeEdgeKeySpecifier)[]; +export type NotificationTypeEdgeFieldPolicy = { node?: FieldPolicy | FieldReadFunction, cursor?: FieldPolicy | FieldReadFunction }; -export type AggregateChatRoomKeySpecifier = ('count' | AggregateChatRoomKeySpecifier)[]; -export type AggregateChatRoomFieldPolicy = { +export type AggregateNotificationTypeKeySpecifier = ('count' | AggregateNotificationTypeKeySpecifier)[]; +export type AggregateNotificationTypeFieldPolicy = { + count?: FieldPolicy | FieldReadFunction +}; +export type ResourceTagConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | ResourceTagConnectionKeySpecifier)[]; +export type ResourceTagConnectionFieldPolicy = { + pageInfo?: FieldPolicy | FieldReadFunction, + edges?: FieldPolicy | FieldReadFunction, + aggregate?: FieldPolicy | FieldReadFunction +}; +export type ResourceTagEdgeKeySpecifier = ('node' | 'cursor' | ResourceTagEdgeKeySpecifier)[]; +export type ResourceTagEdgeFieldPolicy = { + node?: FieldPolicy | FieldReadFunction, + cursor?: FieldPolicy | FieldReadFunction +}; +export type AggregateResourceTagKeySpecifier = ('count' | AggregateResourceTagKeySpecifier)[]; +export type AggregateResourceTagFieldPolicy = { + count?: FieldPolicy | FieldReadFunction +}; +export type TagConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | TagConnectionKeySpecifier)[]; +export type TagConnectionFieldPolicy = { + pageInfo?: FieldPolicy | FieldReadFunction, + edges?: FieldPolicy | FieldReadFunction, + aggregate?: FieldPolicy | FieldReadFunction +}; +export type TagEdgeKeySpecifier = ('node' | 'cursor' | TagEdgeKeySpecifier)[]; +export type TagEdgeFieldPolicy = { + node?: FieldPolicy | FieldReadFunction, + cursor?: FieldPolicy | FieldReadFunction +}; +export type AggregateTagKeySpecifier = ('count' | AggregateTagKeySpecifier)[]; +export type AggregateTagFieldPolicy = { count?: FieldPolicy | FieldReadFunction }; export type GameConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | GameConnectionKeySpecifier)[]; @@ -1144,49 +913,19 @@ export type AggregateTourneyKeySpecifier = ('count' | AggregateTourneyKeySpecifi export type AggregateTourneyFieldPolicy = { count?: FieldPolicy | FieldReadFunction }; -export type EthAccountConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | EthAccountConnectionKeySpecifier)[]; -export type EthAccountConnectionFieldPolicy = { - pageInfo?: FieldPolicy | FieldReadFunction, - edges?: FieldPolicy | FieldReadFunction, - aggregate?: FieldPolicy | FieldReadFunction -}; -export type EthAccountEdgeKeySpecifier = ('node' | 'cursor' | EthAccountEdgeKeySpecifier)[]; -export type EthAccountEdgeFieldPolicy = { - node?: FieldPolicy | FieldReadFunction, - cursor?: FieldPolicy | FieldReadFunction -}; -export type AggregateEthAccountKeySpecifier = ('count' | AggregateEthAccountKeySpecifier)[]; -export type AggregateEthAccountFieldPolicy = { - count?: FieldPolicy | FieldReadFunction -}; -export type EthContractSourceConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | EthContractSourceConnectionKeySpecifier)[]; -export type EthContractSourceConnectionFieldPolicy = { - pageInfo?: FieldPolicy | FieldReadFunction, - edges?: FieldPolicy | FieldReadFunction, - aggregate?: FieldPolicy | FieldReadFunction -}; -export type EthContractSourceEdgeKeySpecifier = ('node' | 'cursor' | EthContractSourceEdgeKeySpecifier)[]; -export type EthContractSourceEdgeFieldPolicy = { - node?: FieldPolicy | FieldReadFunction, - cursor?: FieldPolicy | FieldReadFunction -}; -export type AggregateEthContractSourceKeySpecifier = ('count' | AggregateEthContractSourceKeySpecifier)[]; -export type AggregateEthContractSourceFieldPolicy = { - count?: FieldPolicy | FieldReadFunction -}; -export type EthTransactionConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | EthTransactionConnectionKeySpecifier)[]; -export type EthTransactionConnectionFieldPolicy = { +export type VoteConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | VoteConnectionKeySpecifier)[]; +export type VoteConnectionFieldPolicy = { pageInfo?: FieldPolicy | FieldReadFunction, edges?: FieldPolicy | FieldReadFunction, aggregate?: FieldPolicy | FieldReadFunction }; -export type EthTransactionEdgeKeySpecifier = ('node' | 'cursor' | EthTransactionEdgeKeySpecifier)[]; -export type EthTransactionEdgeFieldPolicy = { +export type VoteEdgeKeySpecifier = ('node' | 'cursor' | VoteEdgeKeySpecifier)[]; +export type VoteEdgeFieldPolicy = { node?: FieldPolicy | FieldReadFunction, cursor?: FieldPolicy | FieldReadFunction }; -export type AggregateEthTransactionKeySpecifier = ('count' | AggregateEthTransactionKeySpecifier)[]; -export type AggregateEthTransactionFieldPolicy = { +export type AggregateVoteKeySpecifier = ('count' | AggregateVoteKeySpecifier)[]; +export type AggregateVoteFieldPolicy = { count?: FieldPolicy | FieldReadFunction }; export type CallRequestConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | CallRequestConnectionKeySpecifier)[]; @@ -1204,548 +943,212 @@ export type AggregateCallRequestKeySpecifier = ('count' | AggregateCallRequestKe export type AggregateCallRequestFieldPolicy = { count?: FieldPolicy | FieldReadFunction }; -export type PositionConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | PositionConnectionKeySpecifier)[]; -export type PositionConnectionFieldPolicy = { +export type BeerConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | BeerConnectionKeySpecifier)[]; +export type BeerConnectionFieldPolicy = { pageInfo?: FieldPolicy | FieldReadFunction, edges?: FieldPolicy | FieldReadFunction, aggregate?: FieldPolicy | FieldReadFunction }; -export type PositionEdgeKeySpecifier = ('node' | 'cursor' | PositionEdgeKeySpecifier)[]; -export type PositionEdgeFieldPolicy = { +export type BeerEdgeKeySpecifier = ('node' | 'cursor' | BeerEdgeKeySpecifier)[]; +export type BeerEdgeFieldPolicy = { node?: FieldPolicy | FieldReadFunction, cursor?: FieldPolicy | FieldReadFunction }; -export type AggregatePositionKeySpecifier = ('count' | AggregatePositionKeySpecifier)[]; -export type AggregatePositionFieldPolicy = { +export type AggregateBeerKeySpecifier = ('count' | AggregateBeerKeySpecifier)[]; +export type AggregateBeerFieldPolicy = { count?: FieldPolicy | FieldReadFunction }; -export type ProjectMemberConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | ProjectMemberConnectionKeySpecifier)[]; -export type ProjectMemberConnectionFieldPolicy = { +export type CommentConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | CommentConnectionKeySpecifier)[]; +export type CommentConnectionFieldPolicy = { pageInfo?: FieldPolicy | FieldReadFunction, edges?: FieldPolicy | FieldReadFunction, aggregate?: FieldPolicy | FieldReadFunction }; -export type ProjectMemberEdgeKeySpecifier = ('node' | 'cursor' | ProjectMemberEdgeKeySpecifier)[]; -export type ProjectMemberEdgeFieldPolicy = { +export type CommentEdgeKeySpecifier = ('node' | 'cursor' | CommentEdgeKeySpecifier)[]; +export type CommentEdgeFieldPolicy = { node?: FieldPolicy | FieldReadFunction, cursor?: FieldPolicy | FieldReadFunction }; -export type AggregateProjectMemberKeySpecifier = ('count' | AggregateProjectMemberKeySpecifier)[]; -export type AggregateProjectMemberFieldPolicy = { +export type AggregateCommentKeySpecifier = ('count' | AggregateCommentKeySpecifier)[]; +export type AggregateCommentFieldPolicy = { count?: FieldPolicy | FieldReadFunction }; -export type ServiceConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | ServiceConnectionKeySpecifier)[]; -export type ServiceConnectionFieldPolicy = { +export type PlaceConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | PlaceConnectionKeySpecifier)[]; +export type PlaceConnectionFieldPolicy = { pageInfo?: FieldPolicy | FieldReadFunction, edges?: FieldPolicy | FieldReadFunction, aggregate?: FieldPolicy | FieldReadFunction }; -export type ServiceEdgeKeySpecifier = ('node' | 'cursor' | ServiceEdgeKeySpecifier)[]; -export type ServiceEdgeFieldPolicy = { - node?: FieldPolicy | FieldReadFunction, - cursor?: FieldPolicy | FieldReadFunction -}; -export type AggregateServiceKeySpecifier = ('count' | AggregateServiceKeySpecifier)[]; -export type AggregateServiceFieldPolicy = { - count?: FieldPolicy | FieldReadFunction -}; -export type TaskConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | TaskConnectionKeySpecifier)[]; -export type TaskConnectionFieldPolicy = { +export type TopicConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | TopicConnectionKeySpecifier)[]; +export type TopicConnectionFieldPolicy = { pageInfo?: FieldPolicy | FieldReadFunction, edges?: FieldPolicy | FieldReadFunction, aggregate?: FieldPolicy | FieldReadFunction }; -export type TaskEdgeKeySpecifier = ('node' | 'cursor' | TaskEdgeKeySpecifier)[]; -export type TaskEdgeFieldPolicy = { +export type TopicEdgeKeySpecifier = ('node' | 'cursor' | TopicEdgeKeySpecifier)[]; +export type TopicEdgeFieldPolicy = { node?: FieldPolicy | FieldReadFunction, cursor?: FieldPolicy | FieldReadFunction }; -export type AggregateTaskKeySpecifier = ('count' | AggregateTaskKeySpecifier)[]; -export type AggregateTaskFieldPolicy = { +export type AggregateTopicKeySpecifier = ('count' | AggregateTopicKeySpecifier)[]; +export type AggregateTopicFieldPolicy = { count?: FieldPolicy | FieldReadFunction }; -export type TaskReactionConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | TaskReactionConnectionKeySpecifier)[]; -export type TaskReactionConnectionFieldPolicy = { +export type EthBlockConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | EthBlockConnectionKeySpecifier)[]; +export type EthBlockConnectionFieldPolicy = { pageInfo?: FieldPolicy | FieldReadFunction, edges?: FieldPolicy | FieldReadFunction, aggregate?: FieldPolicy | FieldReadFunction }; -export type TaskReactionEdgeKeySpecifier = ('node' | 'cursor' | TaskReactionEdgeKeySpecifier)[]; -export type TaskReactionEdgeFieldPolicy = { +export type EthBlockEdgeKeySpecifier = ('node' | 'cursor' | EthBlockEdgeKeySpecifier)[]; +export type EthBlockEdgeFieldPolicy = { node?: FieldPolicy | FieldReadFunction, cursor?: FieldPolicy | FieldReadFunction }; -export type AggregateTaskReactionKeySpecifier = ('count' | AggregateTaskReactionKeySpecifier)[]; -export type AggregateTaskReactionFieldPolicy = { +export type AggregateEthBlockKeySpecifier = ('count' | AggregateEthBlockKeySpecifier)[]; +export type AggregateEthBlockFieldPolicy = { count?: FieldPolicy | FieldReadFunction }; -export type TeamMemberConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | TeamMemberConnectionKeySpecifier)[]; -export type TeamMemberConnectionFieldPolicy = { +export type EthContractSourceConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | EthContractSourceConnectionKeySpecifier)[]; +export type EthContractSourceConnectionFieldPolicy = { pageInfo?: FieldPolicy | FieldReadFunction, edges?: FieldPolicy | FieldReadFunction, aggregate?: FieldPolicy | FieldReadFunction }; -export type TeamMemberEdgeKeySpecifier = ('node' | 'cursor' | TeamMemberEdgeKeySpecifier)[]; -export type TeamMemberEdgeFieldPolicy = { +export type EthContractSourceEdgeKeySpecifier = ('node' | 'cursor' | EthContractSourceEdgeKeySpecifier)[]; +export type EthContractSourceEdgeFieldPolicy = { node?: FieldPolicy | FieldReadFunction, cursor?: FieldPolicy | FieldReadFunction }; -export type AggregateTeamMemberKeySpecifier = ('count' | AggregateTeamMemberKeySpecifier)[]; -export type AggregateTeamMemberFieldPolicy = { +export type AggregateEthContractSourceKeySpecifier = ('count' | AggregateEthContractSourceKeySpecifier)[]; +export type AggregateEthContractSourceFieldPolicy = { count?: FieldPolicy | FieldReadFunction }; -export type TimerConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | TimerConnectionKeySpecifier)[]; -export type TimerConnectionFieldPolicy = { +export type UserConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | UserConnectionKeySpecifier)[]; +export type UserConnectionFieldPolicy = { pageInfo?: FieldPolicy | FieldReadFunction, edges?: FieldPolicy | FieldReadFunction, aggregate?: FieldPolicy | FieldReadFunction }; -export type TimerEdgeKeySpecifier = ('node' | 'cursor' | TimerEdgeKeySpecifier)[]; -export type TimerEdgeFieldPolicy = { +export type UserEdgeKeySpecifier = ('node' | 'cursor' | UserEdgeKeySpecifier)[]; +export type UserEdgeFieldPolicy = { node?: FieldPolicy | FieldReadFunction, cursor?: FieldPolicy | FieldReadFunction }; -export type AggregateTimerKeySpecifier = ('count' | AggregateTimerKeySpecifier)[]; -export type AggregateTimerFieldPolicy = { +export type AggregateUserKeySpecifier = ('count' | AggregateUserKeySpecifier)[]; +export type AggregateUserFieldPolicy = { count?: FieldPolicy | FieldReadFunction }; -export type RouteConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | RouteConnectionKeySpecifier)[]; -export type RouteConnectionFieldPolicy = { +export type ChatMessageConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | ChatMessageConnectionKeySpecifier)[]; +export type ChatMessageConnectionFieldPolicy = { pageInfo?: FieldPolicy | FieldReadFunction, edges?: FieldPolicy | FieldReadFunction, aggregate?: FieldPolicy | FieldReadFunction }; -export type RouteEdgeKeySpecifier = ('node' | 'cursor' | RouteEdgeKeySpecifier)[]; -export type RouteEdgeFieldPolicy = { +export type ChatMessageEdgeKeySpecifier = ('node' | 'cursor' | ChatMessageEdgeKeySpecifier)[]; +export type ChatMessageEdgeFieldPolicy = { node?: FieldPolicy | FieldReadFunction, cursor?: FieldPolicy | FieldReadFunction }; -export type AggregateRouteKeySpecifier = ('count' | AggregateRouteKeySpecifier)[]; -export type AggregateRouteFieldPolicy = { +export type AggregateChatMessageKeySpecifier = ('count' | AggregateChatMessageKeySpecifier)[]; +export type AggregateChatMessageFieldPolicy = { count?: FieldPolicy | FieldReadFunction }; -export type CodeChallengeConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | CodeChallengeConnectionKeySpecifier)[]; -export type CodeChallengeConnectionFieldPolicy = { - pageInfo?: FieldPolicy | FieldReadFunction, - edges?: FieldPolicy | FieldReadFunction, - aggregate?: FieldPolicy | FieldReadFunction +export type ethNetKeySpecifier = ('id' | 'isListening' | 'peerCount' | 'networkType' | ethNetKeySpecifier)[]; +export type ethNetFieldPolicy = { + id?: FieldPolicy | FieldReadFunction, + isListening?: FieldPolicy | FieldReadFunction, + peerCount?: FieldPolicy | FieldReadFunction, + networkType?: FieldPolicy | FieldReadFunction }; -export type CodeChallengeEdgeKeySpecifier = ('node' | 'cursor' | CodeChallengeEdgeKeySpecifier)[]; -export type CodeChallengeEdgeFieldPolicy = { - node?: FieldPolicy | FieldReadFunction, - cursor?: FieldPolicy | FieldReadFunction +export type EthPersonalAccountKeySpecifier = ('address' | 'balance' | EthPersonalAccountKeySpecifier)[]; +export type EthPersonalAccountFieldPolicy = { + address?: FieldPolicy | FieldReadFunction, + balance?: FieldPolicy | FieldReadFunction }; -export type AggregateCodeChallengeKeySpecifier = ('count' | AggregateCodeChallengeKeySpecifier)[]; -export type AggregateCodeChallengeFieldPolicy = { - count?: FieldPolicy | FieldReadFunction +export type ethSyncStateKeySpecifier = ('startingBlock' | 'currentBlock' | 'highestBlock' | 'knownStates' | 'pulledStates' | ethSyncStateKeySpecifier)[]; +export type ethSyncStateFieldPolicy = { + startingBlock?: FieldPolicy | FieldReadFunction, + currentBlock?: FieldPolicy | FieldReadFunction, + highestBlock?: FieldPolicy | FieldReadFunction, + knownStates?: FieldPolicy | FieldReadFunction, + pulledStates?: FieldPolicy | FieldReadFunction }; -export type CodeChallengeBlockConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | CodeChallengeBlockConnectionKeySpecifier)[]; -export type CodeChallengeBlockConnectionFieldPolicy = { - pageInfo?: FieldPolicy | FieldReadFunction, - edges?: FieldPolicy | FieldReadFunction, - aggregate?: FieldPolicy | FieldReadFunction +export type MutationKeySpecifier = ('createTopicProcessor' | 'updateTopicProcessor' | 'updatePlaceData' | 'updatePlaceProcessor' | 'updateBeerProcessor' | 'createBeerProcessor' | 'togglePlaceBeer' | 'updatePlaceBeerProcessor' | 'createPlaceProcessor' | 'createUserTarif' | 'createTarifRequest' | 'createCommentProcessor' | 'updateCommentProcessor' | 'createCity' | 'updateCity' | 'singleUpload' | 'multipleUpload' | 'signup' | 'signin' | 'updateUserProcessor' | 'resetPasswordProcessor' | 'createResetPasswordProcessor' | MutationKeySpecifier)[]; +export type MutationFieldPolicy = { + createTopicProcessor?: FieldPolicy | FieldReadFunction, + updateTopicProcessor?: FieldPolicy | FieldReadFunction, + updatePlaceData?: FieldPolicy | FieldReadFunction, + updatePlaceProcessor?: FieldPolicy | FieldReadFunction, + updateBeerProcessor?: FieldPolicy | FieldReadFunction, + createBeerProcessor?: FieldPolicy | FieldReadFunction, + togglePlaceBeer?: FieldPolicy | FieldReadFunction, + updatePlaceBeerProcessor?: FieldPolicy | FieldReadFunction, + createPlaceProcessor?: FieldPolicy | FieldReadFunction, + createUserTarif?: FieldPolicy | FieldReadFunction, + createTarifRequest?: FieldPolicy | FieldReadFunction, + createCommentProcessor?: FieldPolicy | FieldReadFunction, + updateCommentProcessor?: FieldPolicy | FieldReadFunction, + createCity?: FieldPolicy | FieldReadFunction, + updateCity?: FieldPolicy | FieldReadFunction, + singleUpload?: FieldPolicy | FieldReadFunction, + multipleUpload?: FieldPolicy | FieldReadFunction, + signup?: FieldPolicy | FieldReadFunction, + signin?: FieldPolicy | FieldReadFunction, + updateUserProcessor?: FieldPolicy | FieldReadFunction, + resetPasswordProcessor?: FieldPolicy | FieldReadFunction, + createResetPasswordProcessor?: FieldPolicy | FieldReadFunction }; -export type CodeChallengeBlockEdgeKeySpecifier = ('node' | 'cursor' | CodeChallengeBlockEdgeKeySpecifier)[]; -export type CodeChallengeBlockEdgeFieldPolicy = { - node?: FieldPolicy | FieldReadFunction, - cursor?: FieldPolicy | FieldReadFunction +export type TopicResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | TopicResponseKeySpecifier)[]; +export type TopicResponseFieldPolicy = { + success?: FieldPolicy | FieldReadFunction, + message?: FieldPolicy | FieldReadFunction, + errors?: FieldPolicy | FieldReadFunction, + data?: FieldPolicy | FieldReadFunction }; -export type AggregateCodeChallengeBlockKeySpecifier = ('count' | AggregateCodeChallengeBlockKeySpecifier)[]; -export type AggregateCodeChallengeBlockFieldPolicy = { - count?: FieldPolicy | FieldReadFunction +export type ErrorKeySpecifier = ('key' | 'message' | ErrorKeySpecifier)[]; +export type ErrorFieldPolicy = { + key?: FieldPolicy | FieldReadFunction, + message?: FieldPolicy | FieldReadFunction }; -export type CodeChallengeCompletionConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | CodeChallengeCompletionConnectionKeySpecifier)[]; -export type CodeChallengeCompletionConnectionFieldPolicy = { - pageInfo?: FieldPolicy | FieldReadFunction, - edges?: FieldPolicy | FieldReadFunction, - aggregate?: FieldPolicy | FieldReadFunction +export type PlaceResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | PlaceResponseKeySpecifier)[]; +export type PlaceResponseFieldPolicy = { + success?: FieldPolicy | FieldReadFunction, + message?: FieldPolicy | FieldReadFunction, + errors?: FieldPolicy | FieldReadFunction, + data?: FieldPolicy | FieldReadFunction }; -export type CodeChallengeCompletionEdgeKeySpecifier = ('node' | 'cursor' | CodeChallengeCompletionEdgeKeySpecifier)[]; -export type CodeChallengeCompletionEdgeFieldPolicy = { - node?: FieldPolicy | FieldReadFunction, - cursor?: FieldPolicy | FieldReadFunction +export type BeerPayloadKeySpecifier = ('success' | 'message' | 'errors' | 'data' | BeerPayloadKeySpecifier)[]; +export type BeerPayloadFieldPolicy = { + success?: FieldPolicy | FieldReadFunction, + message?: FieldPolicy | FieldReadFunction, + errors?: FieldPolicy | FieldReadFunction, + data?: FieldPolicy | FieldReadFunction }; -export type AggregateCodeChallengeCompletionKeySpecifier = ('count' | AggregateCodeChallengeCompletionKeySpecifier)[]; -export type AggregateCodeChallengeCompletionFieldPolicy = { - count?: FieldPolicy | FieldReadFunction +export type PlaceBeerPayloadKeySpecifier = ('success' | 'message' | 'errors' | 'data' | PlaceBeerPayloadKeySpecifier)[]; +export type PlaceBeerPayloadFieldPolicy = { + success?: FieldPolicy | FieldReadFunction, + message?: FieldPolicy | FieldReadFunction, + errors?: FieldPolicy | FieldReadFunction, + data?: FieldPolicy | FieldReadFunction }; -export type CommentConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | CommentConnectionKeySpecifier)[]; -export type CommentConnectionFieldPolicy = { - pageInfo?: FieldPolicy | FieldReadFunction, - edges?: FieldPolicy | FieldReadFunction, - aggregate?: FieldPolicy | FieldReadFunction +export type PlacePayloadKeySpecifier = ('success' | 'message' | 'errors' | 'data' | PlacePayloadKeySpecifier)[]; +export type PlacePayloadFieldPolicy = { + success?: FieldPolicy | FieldReadFunction, + message?: FieldPolicy | FieldReadFunction, + errors?: FieldPolicy | FieldReadFunction, + data?: FieldPolicy | FieldReadFunction }; -export type CommentEdgeKeySpecifier = ('node' | 'cursor' | CommentEdgeKeySpecifier)[]; -export type CommentEdgeFieldPolicy = { - node?: FieldPolicy | FieldReadFunction, - cursor?: FieldPolicy | FieldReadFunction +export type TarifRequestKeySpecifier = ('id' | 'User' | 'Tarif' | 'createdAt' | 'executed' | TarifRequestKeySpecifier)[]; +export type TarifRequestFieldPolicy = { + id?: FieldPolicy | FieldReadFunction, + User?: FieldPolicy | FieldReadFunction, + Tarif?: FieldPolicy | FieldReadFunction, + createdAt?: FieldPolicy | FieldReadFunction, + executed?: FieldPolicy | FieldReadFunction }; -export type AggregateCommentKeySpecifier = ('count' | AggregateCommentKeySpecifier)[]; -export type AggregateCommentFieldPolicy = { - count?: FieldPolicy | FieldReadFunction -}; -export type TechnologyLessonConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | TechnologyLessonConnectionKeySpecifier)[]; -export type TechnologyLessonConnectionFieldPolicy = { - pageInfo?: FieldPolicy | FieldReadFunction, - edges?: FieldPolicy | FieldReadFunction, - aggregate?: FieldPolicy | FieldReadFunction -}; -export type TechnologyLessonEdgeKeySpecifier = ('node' | 'cursor' | TechnologyLessonEdgeKeySpecifier)[]; -export type TechnologyLessonEdgeFieldPolicy = { - node?: FieldPolicy | FieldReadFunction, - cursor?: FieldPolicy | FieldReadFunction -}; -export type AggregateTechnologyLessonKeySpecifier = ('count' | AggregateTechnologyLessonKeySpecifier)[]; -export type AggregateTechnologyLessonFieldPolicy = { - count?: FieldPolicy | FieldReadFunction -}; -export type CareerConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | CareerConnectionKeySpecifier)[]; -export type CareerConnectionFieldPolicy = { - pageInfo?: FieldPolicy | FieldReadFunction, - edges?: FieldPolicy | FieldReadFunction, - aggregate?: FieldPolicy | FieldReadFunction -}; -export type CareerEdgeKeySpecifier = ('node' | 'cursor' | CareerEdgeKeySpecifier)[]; -export type CareerEdgeFieldPolicy = { - node?: FieldPolicy | FieldReadFunction, - cursor?: FieldPolicy | FieldReadFunction -}; -export type AggregateCareerKeySpecifier = ('count' | AggregateCareerKeySpecifier)[]; -export type AggregateCareerFieldPolicy = { - count?: FieldPolicy | FieldReadFunction -}; -export type TechnologyLessonUserConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | TechnologyLessonUserConnectionKeySpecifier)[]; -export type TechnologyLessonUserConnectionFieldPolicy = { - pageInfo?: FieldPolicy | FieldReadFunction, - edges?: FieldPolicy | FieldReadFunction, - aggregate?: FieldPolicy | FieldReadFunction -}; -export type TechnologyLessonUserEdgeKeySpecifier = ('node' | 'cursor' | TechnologyLessonUserEdgeKeySpecifier)[]; -export type TechnologyLessonUserEdgeFieldPolicy = { - node?: FieldPolicy | FieldReadFunction, - cursor?: FieldPolicy | FieldReadFunction -}; -export type AggregateTechnologyLessonUserKeySpecifier = ('count' | AggregateTechnologyLessonUserKeySpecifier)[]; -export type AggregateTechnologyLessonUserFieldPolicy = { - count?: FieldPolicy | FieldReadFunction -}; -export type UserTechnologyConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | UserTechnologyConnectionKeySpecifier)[]; -export type UserTechnologyConnectionFieldPolicy = { - pageInfo?: FieldPolicy | FieldReadFunction, - edges?: FieldPolicy | FieldReadFunction, - aggregate?: FieldPolicy | FieldReadFunction -}; -export type UserTechnologyEdgeKeySpecifier = ('node' | 'cursor' | UserTechnologyEdgeKeySpecifier)[]; -export type UserTechnologyEdgeFieldPolicy = { - node?: FieldPolicy | FieldReadFunction, - cursor?: FieldPolicy | FieldReadFunction -}; -export type AggregateUserTechnologyKeySpecifier = ('count' | AggregateUserTechnologyKeySpecifier)[]; -export type AggregateUserTechnologyFieldPolicy = { - count?: FieldPolicy | FieldReadFunction -}; -export type TestConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | TestConnectionKeySpecifier)[]; -export type TestConnectionFieldPolicy = { - pageInfo?: FieldPolicy | FieldReadFunction, - edges?: FieldPolicy | FieldReadFunction, - aggregate?: FieldPolicy | FieldReadFunction -}; -export type TestEdgeKeySpecifier = ('node' | 'cursor' | TestEdgeKeySpecifier)[]; -export type TestEdgeFieldPolicy = { - node?: FieldPolicy | FieldReadFunction, - cursor?: FieldPolicy | FieldReadFunction -}; -export type AggregateTestKeySpecifier = ('count' | AggregateTestKeySpecifier)[]; -export type AggregateTestFieldPolicy = { - count?: FieldPolicy | FieldReadFunction -}; -export type TechnologyConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | TechnologyConnectionKeySpecifier)[]; -export type TechnologyConnectionFieldPolicy = { - pageInfo?: FieldPolicy | FieldReadFunction, - edges?: FieldPolicy | FieldReadFunction, - aggregate?: FieldPolicy | FieldReadFunction -}; -export type TechnologyEdgeKeySpecifier = ('node' | 'cursor' | TechnologyEdgeKeySpecifier)[]; -export type TechnologyEdgeFieldPolicy = { - node?: FieldPolicy | FieldReadFunction, - cursor?: FieldPolicy | FieldReadFunction -}; -export type AggregateTechnologyKeySpecifier = ('count' | AggregateTechnologyKeySpecifier)[]; -export type AggregateTechnologyFieldPolicy = { - count?: FieldPolicy | FieldReadFunction -}; -export type EthBlockConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | EthBlockConnectionKeySpecifier)[]; -export type EthBlockConnectionFieldPolicy = { - pageInfo?: FieldPolicy | FieldReadFunction, - edges?: FieldPolicy | FieldReadFunction, - aggregate?: FieldPolicy | FieldReadFunction -}; -export type EthBlockEdgeKeySpecifier = ('node' | 'cursor' | EthBlockEdgeKeySpecifier)[]; -export type EthBlockEdgeFieldPolicy = { - node?: FieldPolicy | FieldReadFunction, - cursor?: FieldPolicy | FieldReadFunction -}; -export type AggregateEthBlockKeySpecifier = ('count' | AggregateEthBlockKeySpecifier)[]; -export type AggregateEthBlockFieldPolicy = { - count?: FieldPolicy | FieldReadFunction -}; -export type TeamConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | TeamConnectionKeySpecifier)[]; -export type TeamConnectionFieldPolicy = { - pageInfo?: FieldPolicy | FieldReadFunction, - edges?: FieldPolicy | FieldReadFunction, - aggregate?: FieldPolicy | FieldReadFunction -}; -export type TeamEdgeKeySpecifier = ('node' | 'cursor' | TeamEdgeKeySpecifier)[]; -export type TeamEdgeFieldPolicy = { - node?: FieldPolicy | FieldReadFunction, - cursor?: FieldPolicy | FieldReadFunction -}; -export type AggregateTeamKeySpecifier = ('count' | AggregateTeamKeySpecifier)[]; -export type AggregateTeamFieldPolicy = { - count?: FieldPolicy | FieldReadFunction -}; -export type ProjectConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | ProjectConnectionKeySpecifier)[]; -export type ProjectConnectionFieldPolicy = { - pageInfo?: FieldPolicy | FieldReadFunction, - edges?: FieldPolicy | FieldReadFunction, - aggregate?: FieldPolicy | FieldReadFunction -}; -export type ProjectEdgeKeySpecifier = ('node' | 'cursor' | ProjectEdgeKeySpecifier)[]; -export type ProjectEdgeFieldPolicy = { - node?: FieldPolicy | FieldReadFunction, - cursor?: FieldPolicy | FieldReadFunction -}; -export type AggregateProjectKeySpecifier = ('count' | AggregateProjectKeySpecifier)[]; -export type AggregateProjectFieldPolicy = { - count?: FieldPolicy | FieldReadFunction -}; -export type TemplateConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | TemplateConnectionKeySpecifier)[]; -export type TemplateConnectionFieldPolicy = { - pageInfo?: FieldPolicy | FieldReadFunction, - edges?: FieldPolicy | FieldReadFunction, - aggregate?: FieldPolicy | FieldReadFunction -}; -export type TemplateEdgeKeySpecifier = ('node' | 'cursor' | TemplateEdgeKeySpecifier)[]; -export type TemplateEdgeFieldPolicy = { - node?: FieldPolicy | FieldReadFunction, - cursor?: FieldPolicy | FieldReadFunction -}; -export type AggregateTemplateKeySpecifier = ('count' | AggregateTemplateKeySpecifier)[]; -export type AggregateTemplateFieldPolicy = { - count?: FieldPolicy | FieldReadFunction -}; -export type ResourceConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | ResourceConnectionKeySpecifier)[]; -export type ResourceConnectionFieldPolicy = { - pageInfo?: FieldPolicy | FieldReadFunction, - edges?: FieldPolicy | FieldReadFunction, - aggregate?: FieldPolicy | FieldReadFunction -}; -export type ResourceEdgeKeySpecifier = ('node' | 'cursor' | ResourceEdgeKeySpecifier)[]; -export type ResourceEdgeFieldPolicy = { - node?: FieldPolicy | FieldReadFunction, - cursor?: FieldPolicy | FieldReadFunction -}; -export type AggregateResourceKeySpecifier = ('count' | AggregateResourceKeySpecifier)[]; -export type AggregateResourceFieldPolicy = { - count?: FieldPolicy | FieldReadFunction -}; -export type ChatMessageConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | ChatMessageConnectionKeySpecifier)[]; -export type ChatMessageConnectionFieldPolicy = { - pageInfo?: FieldPolicy | FieldReadFunction, - edges?: FieldPolicy | FieldReadFunction, - aggregate?: FieldPolicy | FieldReadFunction -}; -export type ChatMessageEdgeKeySpecifier = ('node' | 'cursor' | ChatMessageEdgeKeySpecifier)[]; -export type ChatMessageEdgeFieldPolicy = { - node?: FieldPolicy | FieldReadFunction, - cursor?: FieldPolicy | FieldReadFunction -}; -export type AggregateChatMessageKeySpecifier = ('count' | AggregateChatMessageKeySpecifier)[]; -export type AggregateChatMessageFieldPolicy = { - count?: FieldPolicy | FieldReadFunction -}; -export type UserConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | UserConnectionKeySpecifier)[]; -export type UserConnectionFieldPolicy = { - pageInfo?: FieldPolicy | FieldReadFunction, - edges?: FieldPolicy | FieldReadFunction, - aggregate?: FieldPolicy | FieldReadFunction -}; -export type UserEdgeKeySpecifier = ('node' | 'cursor' | UserEdgeKeySpecifier)[]; -export type UserEdgeFieldPolicy = { - node?: FieldPolicy | FieldReadFunction, - cursor?: FieldPolicy | FieldReadFunction -}; -export type AggregateUserKeySpecifier = ('count' | AggregateUserKeySpecifier)[]; -export type AggregateUserFieldPolicy = { - count?: FieldPolicy | FieldReadFunction -}; -export type ethNetKeySpecifier = ('id' | 'isListening' | 'peerCount' | 'networkType' | ethNetKeySpecifier)[]; -export type ethNetFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - isListening?: FieldPolicy | FieldReadFunction, - peerCount?: FieldPolicy | FieldReadFunction, - networkType?: FieldPolicy | FieldReadFunction -}; -export type EthPersonalAccountKeySpecifier = ('address' | 'balance' | EthPersonalAccountKeySpecifier)[]; -export type EthPersonalAccountFieldPolicy = { - address?: FieldPolicy | FieldReadFunction, - balance?: FieldPolicy | FieldReadFunction -}; -export type ethSyncStateKeySpecifier = ('startingBlock' | 'currentBlock' | 'highestBlock' | 'knownStates' | 'pulledStates' | ethSyncStateKeySpecifier)[]; -export type ethSyncStateFieldPolicy = { - startingBlock?: FieldPolicy | FieldReadFunction, - currentBlock?: FieldPolicy | FieldReadFunction, - highestBlock?: FieldPolicy | FieldReadFunction, - knownStates?: FieldPolicy | FieldReadFunction, - pulledStates?: FieldPolicy | FieldReadFunction -}; -export type MutationKeySpecifier = ('createBlogProcessor' | 'updateBlogProcessor' | 'createTopicProcessor' | 'updateTopicProcessor' | 'createCommentProcessor' | 'updateCommentProcessor' | 'createTestProcessor' | 'updateTestProcessor' | 'ethSigninOrSignup' | 'ethConnectAuthAccount' | 'createCodeChallengeCompletionProcessor' | 'updateCodeChallengeCompletionProcessor' | 'fccImportChallengs' | 'createCareerProcessor' | 'updateCareerProcessor' | 'createUserTechnologyProcessor' | 'updateUserTechnologyProcessor' | 'createTechnologyLessonProcessor' | 'updateTechnologyLessonProcessor' | 'createTechnologyProcessor' | 'updateTechnologyProcessor' | 'createTechnologyLessonCommentProcessor' | 'updateTechnologyLessonCommentProcessor' | 'createTechnologyLessonUserProcessor' | 'updateTechnologyLessonUserProcessor' | 'createPlayer' | 'createWorld' | 'createSettings' | 'createCallRequest' | 'createUser' | 'updatePlayer' | 'updateWorld' | 'updateSettings' | 'updateCallRequest' | 'updateUser' | 'deleteGallery' | 'deleteWorld' | 'deleteNotice' | 'deleteGame' | 'deleteGameResult' | 'deleteTournament' | 'deleteTournamentGroup' | 'deleteTourney' | 'deleteProjectMember' | 'deleteTaskReaction' | 'deleteTeamMember' | 'deleteRoute' | 'deleteCodeChallenge' | 'deleteCodeChallengeBlock' | 'deleteTechnologyLesson' | 'deleteCareer' | 'deleteTechnologyLessonUser' | 'deleteUserTechnology' | 'deleteTest' | 'deleteFile' | 'deleteTechnology' | 'deleteTemplate' | 'deleteResource' | 'deleteUser' | 'deleteManyNotices' | 'deleteManyRoutes' | 'deleteManyTests' | 'runCommand' | 'login' | 'createFileProcessor' | 'updateFileProcessor' | 'singleUpload' | 'multipleUpload' | 'createSmsMessageProcessor' | 'createSmsProviderProcessor' | 'updateSmsProviderProcessor' | 'signup' | 'signin' | 'createUserProcessor' | 'updateUserProcessor' | 'resetPasswordProcessor' | 'createResetPasswordProcessor' | 'createTemplateProcessor' | 'updateTemplateProcessor' | 'createGalleryProcessor' | 'updateGalleryProcessor' | 'createResourceProcessor' | 'updateResourceProcessor' | 'createGameProcessor' | 'updateGameProcessor' | 'createGameResultProcessor' | 'updateGameResultProcessor' | 'createTournamentProcessor' | 'updateTournamentProcessor' | 'createTournamentGroupProcessor' | 'updateTournamentGroupProcessor' | 'createTourneyProcessor' | 'updateTourneyProcessor' | 'createChatRoomProcessor' | 'updateChatRoomProcessor' | 'inviteChatRoomProcessor' | 'joinChatRoom' | 'leaveChatRoom' | 'createChatMessageReadedProcessor' | 'createChatMessageProcessor' | 'updateChatMessageProcessor' | 'markAsReadedChatMessage' | 'createEthContractSourceProcessor' | 'updateEthContractSourceProcessor' | 'ethUnlockPersonalAccount' | 'createEthAccountProcessor' | 'updateEthAccountProcessor' | 'createEthTransactionProcessor' | 'ethRecoverPersonalSignature' | 'createCallRequestProcessor' | 'createProjectProcessor' | 'updateProjectProcessor' | 'createProjectMemberProcessor' | 'updateProjectMemberProcessor' | 'createTaskProcessor' | 'updateTaskProcessor' | 'createTaskReactionProcessor' | 'updateTaskReactionProcessor' | 'createTimerProcessor' | 'updateTimerProcessor' | 'createTeamProcessor' | 'updateTeamProcessor' | 'createTeamMemberProcessor' | 'updateTeamMemberProcessor' | 'createServiceProcessor' | 'updateServiceProcessor' | 'createPositionProcessor' | 'updatePositionProcessor' | 'createRouteProcessor' | 'updateRouteProcessor' | MutationKeySpecifier)[]; -export type MutationFieldPolicy = { - createBlogProcessor?: FieldPolicy | FieldReadFunction, - updateBlogProcessor?: FieldPolicy | FieldReadFunction, - createTopicProcessor?: FieldPolicy | FieldReadFunction, - updateTopicProcessor?: FieldPolicy | FieldReadFunction, - createCommentProcessor?: FieldPolicy | FieldReadFunction, - updateCommentProcessor?: FieldPolicy | FieldReadFunction, - createTestProcessor?: FieldPolicy | FieldReadFunction, - updateTestProcessor?: FieldPolicy | FieldReadFunction, - ethSigninOrSignup?: FieldPolicy | FieldReadFunction, - ethConnectAuthAccount?: FieldPolicy | FieldReadFunction, - createCodeChallengeCompletionProcessor?: FieldPolicy | FieldReadFunction, - updateCodeChallengeCompletionProcessor?: FieldPolicy | FieldReadFunction, - fccImportChallengs?: FieldPolicy | FieldReadFunction, - createCareerProcessor?: FieldPolicy | FieldReadFunction, - updateCareerProcessor?: FieldPolicy | FieldReadFunction, - createUserTechnologyProcessor?: FieldPolicy | FieldReadFunction, - updateUserTechnologyProcessor?: FieldPolicy | FieldReadFunction, - createTechnologyLessonProcessor?: FieldPolicy | FieldReadFunction, - updateTechnologyLessonProcessor?: FieldPolicy | FieldReadFunction, - createTechnologyProcessor?: FieldPolicy | FieldReadFunction, - updateTechnologyProcessor?: FieldPolicy | FieldReadFunction, - createTechnologyLessonCommentProcessor?: FieldPolicy | FieldReadFunction, - updateTechnologyLessonCommentProcessor?: FieldPolicy | FieldReadFunction, - createTechnologyLessonUserProcessor?: FieldPolicy | FieldReadFunction, - updateTechnologyLessonUserProcessor?: FieldPolicy | FieldReadFunction, - createPlayer?: FieldPolicy | FieldReadFunction, - createWorld?: FieldPolicy | FieldReadFunction, - createSettings?: FieldPolicy | FieldReadFunction, - createCallRequest?: FieldPolicy | FieldReadFunction, - createUser?: FieldPolicy | FieldReadFunction, - updatePlayer?: FieldPolicy | FieldReadFunction, - updateWorld?: FieldPolicy | FieldReadFunction, - updateSettings?: FieldPolicy | FieldReadFunction, - updateCallRequest?: FieldPolicy | FieldReadFunction, - updateUser?: FieldPolicy | FieldReadFunction, - deleteGallery?: FieldPolicy | FieldReadFunction, - deleteWorld?: FieldPolicy | FieldReadFunction, - deleteNotice?: FieldPolicy | FieldReadFunction, - deleteGame?: FieldPolicy | FieldReadFunction, - deleteGameResult?: FieldPolicy | FieldReadFunction, - deleteTournament?: FieldPolicy | FieldReadFunction, - deleteTournamentGroup?: FieldPolicy | FieldReadFunction, - deleteTourney?: FieldPolicy | FieldReadFunction, - deleteProjectMember?: FieldPolicy | FieldReadFunction, - deleteTaskReaction?: FieldPolicy | FieldReadFunction, - deleteTeamMember?: FieldPolicy | FieldReadFunction, - deleteRoute?: FieldPolicy | FieldReadFunction, - deleteCodeChallenge?: FieldPolicy | FieldReadFunction, - deleteCodeChallengeBlock?: FieldPolicy | FieldReadFunction, - deleteTechnologyLesson?: FieldPolicy | FieldReadFunction, - deleteCareer?: FieldPolicy | FieldReadFunction, - deleteTechnologyLessonUser?: FieldPolicy | FieldReadFunction, - deleteUserTechnology?: FieldPolicy | FieldReadFunction, - deleteTest?: FieldPolicy | FieldReadFunction, - deleteFile?: FieldPolicy | FieldReadFunction, - deleteTechnology?: FieldPolicy | FieldReadFunction, - deleteTemplate?: FieldPolicy | FieldReadFunction, - deleteResource?: FieldPolicy | FieldReadFunction, - deleteUser?: FieldPolicy | FieldReadFunction, - deleteManyNotices?: FieldPolicy | FieldReadFunction, - deleteManyRoutes?: FieldPolicy | FieldReadFunction, - deleteManyTests?: FieldPolicy | FieldReadFunction, - runCommand?: FieldPolicy | FieldReadFunction, - login?: FieldPolicy | FieldReadFunction, - createFileProcessor?: FieldPolicy | FieldReadFunction, - updateFileProcessor?: FieldPolicy | FieldReadFunction, - singleUpload?: FieldPolicy | FieldReadFunction, - multipleUpload?: FieldPolicy | FieldReadFunction, - createSmsMessageProcessor?: FieldPolicy | FieldReadFunction, - createSmsProviderProcessor?: FieldPolicy | FieldReadFunction, - updateSmsProviderProcessor?: FieldPolicy | FieldReadFunction, - signup?: FieldPolicy | FieldReadFunction, - signin?: FieldPolicy | FieldReadFunction, - createUserProcessor?: FieldPolicy | FieldReadFunction, - updateUserProcessor?: FieldPolicy | FieldReadFunction, - resetPasswordProcessor?: FieldPolicy | FieldReadFunction, - createResetPasswordProcessor?: FieldPolicy | FieldReadFunction, - createTemplateProcessor?: FieldPolicy | FieldReadFunction, - updateTemplateProcessor?: FieldPolicy | FieldReadFunction, - createGalleryProcessor?: FieldPolicy | FieldReadFunction, - updateGalleryProcessor?: FieldPolicy | FieldReadFunction, - createResourceProcessor?: FieldPolicy | FieldReadFunction, - updateResourceProcessor?: FieldPolicy | FieldReadFunction, - createGameProcessor?: FieldPolicy | FieldReadFunction, - updateGameProcessor?: FieldPolicy | FieldReadFunction, - createGameResultProcessor?: FieldPolicy | FieldReadFunction, - updateGameResultProcessor?: FieldPolicy | FieldReadFunction, - createTournamentProcessor?: FieldPolicy | FieldReadFunction, - updateTournamentProcessor?: FieldPolicy | FieldReadFunction, - createTournamentGroupProcessor?: FieldPolicy | FieldReadFunction, - updateTournamentGroupProcessor?: FieldPolicy | FieldReadFunction, - createTourneyProcessor?: FieldPolicy | FieldReadFunction, - updateTourneyProcessor?: FieldPolicy | FieldReadFunction, - createChatRoomProcessor?: FieldPolicy | FieldReadFunction, - updateChatRoomProcessor?: FieldPolicy | FieldReadFunction, - inviteChatRoomProcessor?: FieldPolicy | FieldReadFunction, - joinChatRoom?: FieldPolicy | FieldReadFunction, - leaveChatRoom?: FieldPolicy | FieldReadFunction, - createChatMessageReadedProcessor?: FieldPolicy | FieldReadFunction, - createChatMessageProcessor?: FieldPolicy | FieldReadFunction, - updateChatMessageProcessor?: FieldPolicy | FieldReadFunction, - markAsReadedChatMessage?: FieldPolicy | FieldReadFunction, - createEthContractSourceProcessor?: FieldPolicy | FieldReadFunction, - updateEthContractSourceProcessor?: FieldPolicy | FieldReadFunction, - ethUnlockPersonalAccount?: FieldPolicy | FieldReadFunction, - createEthAccountProcessor?: FieldPolicy | FieldReadFunction, - updateEthAccountProcessor?: FieldPolicy | FieldReadFunction, - createEthTransactionProcessor?: FieldPolicy | FieldReadFunction, - ethRecoverPersonalSignature?: FieldPolicy | FieldReadFunction, - createCallRequestProcessor?: FieldPolicy | FieldReadFunction, - createProjectProcessor?: FieldPolicy | FieldReadFunction, - updateProjectProcessor?: FieldPolicy | FieldReadFunction, - createProjectMemberProcessor?: FieldPolicy | FieldReadFunction, - updateProjectMemberProcessor?: FieldPolicy | FieldReadFunction, - createTaskProcessor?: FieldPolicy | FieldReadFunction, - updateTaskProcessor?: FieldPolicy | FieldReadFunction, - createTaskReactionProcessor?: FieldPolicy | FieldReadFunction, - updateTaskReactionProcessor?: FieldPolicy | FieldReadFunction, - createTimerProcessor?: FieldPolicy | FieldReadFunction, - updateTimerProcessor?: FieldPolicy | FieldReadFunction, - createTeamProcessor?: FieldPolicy | FieldReadFunction, - updateTeamProcessor?: FieldPolicy | FieldReadFunction, - createTeamMemberProcessor?: FieldPolicy | FieldReadFunction, - updateTeamMemberProcessor?: FieldPolicy | FieldReadFunction, - createServiceProcessor?: FieldPolicy | FieldReadFunction, - updateServiceProcessor?: FieldPolicy | FieldReadFunction, - createPositionProcessor?: FieldPolicy | FieldReadFunction, - updatePositionProcessor?: FieldPolicy | FieldReadFunction, - createRouteProcessor?: FieldPolicy | FieldReadFunction, - updateRouteProcessor?: FieldPolicy | FieldReadFunction -}; -export type ResourceResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | ResourceResponseKeySpecifier)[]; -export type ResourceResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; -export type ErrorKeySpecifier = ('key' | 'message' | ErrorKeySpecifier)[]; -export type ErrorFieldPolicy = { - key?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction -}; -export type TestResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | TestResponseKeySpecifier)[]; -export type TestResponseFieldPolicy = { +export type CommentResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | CommentResponseKeySpecifier)[]; +export type CommentResponseFieldPolicy = { success?: FieldPolicy | FieldReadFunction, message?: FieldPolicy | FieldReadFunction, errors?: FieldPolicy | FieldReadFunction, @@ -1759,685 +1162,45 @@ export type AuthPayloadFieldPolicy = { token?: FieldPolicy | FieldReadFunction, data?: FieldPolicy | FieldReadFunction }; -export type EthAccountResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | EthAccountResponseKeySpecifier)[]; -export type EthAccountResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; -export type CodeChallengeCompletionResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | CodeChallengeCompletionResponseKeySpecifier)[]; -export type CodeChallengeCompletionResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; -export type CareerResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | CareerResponseKeySpecifier)[]; -export type CareerResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; -export type UserTechnologyResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | UserTechnologyResponseKeySpecifier)[]; -export type UserTechnologyResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; -export type TechnologyLessonResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | TechnologyLessonResponseKeySpecifier)[]; -export type TechnologyLessonResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; -export type TechnologyResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | TechnologyResponseKeySpecifier)[]; -export type TechnologyResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; -export type CommentResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | CommentResponseKeySpecifier)[]; -export type CommentResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; -export type TechnologyLessonUserResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | TechnologyLessonUserResponseKeySpecifier)[]; -export type TechnologyLessonUserResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; -export type BatchPayloadKeySpecifier = ('count' | BatchPayloadKeySpecifier)[]; -export type BatchPayloadFieldPolicy = { - count?: FieldPolicy | FieldReadFunction -}; -export type McJsAuthPayloadKeySpecifier = ('token' | 'user' | McJsAuthPayloadKeySpecifier)[]; -export type McJsAuthPayloadFieldPolicy = { - token?: FieldPolicy | FieldReadFunction, - user?: FieldPolicy | FieldReadFunction -}; -export type FileResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | FileResponseKeySpecifier)[]; -export type FileResponseFieldPolicy = { +export type UserResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | UserResponseKeySpecifier)[]; +export type UserResponseFieldPolicy = { success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; -export type SmsMessageResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | SmsMessageResponseKeySpecifier)[]; -export type SmsMessageResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; -export type SmsMessageKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'from' | 'text' | 'recipients' | 'Provider' | 'deletOnSend' | 'CreatedBy' | 'Status' | SmsMessageKeySpecifier)[]; -export type SmsMessageFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - from?: FieldPolicy | FieldReadFunction, - text?: FieldPolicy | FieldReadFunction, - recipients?: FieldPolicy | FieldReadFunction, - Provider?: FieldPolicy | FieldReadFunction, - deletOnSend?: FieldPolicy | FieldReadFunction, - CreatedBy?: FieldPolicy | FieldReadFunction, - Status?: FieldPolicy | FieldReadFunction -}; -export type SmsProviderKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'credentials' | 'CreatedBy' | SmsProviderKeySpecifier)[]; -export type SmsProviderFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - name?: FieldPolicy | FieldReadFunction, - credentials?: FieldPolicy | FieldReadFunction, - CreatedBy?: FieldPolicy | FieldReadFunction -}; -export type LetsadsSmsMessageStatusKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'description' | 'errorCode' | 'SmsMessage' | 'Items' | LetsadsSmsMessageStatusKeySpecifier)[]; -export type LetsadsSmsMessageStatusFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - name?: FieldPolicy | FieldReadFunction, - description?: FieldPolicy | FieldReadFunction, - errorCode?: FieldPolicy | FieldReadFunction, - SmsMessage?: FieldPolicy | FieldReadFunction, - Items?: FieldPolicy | FieldReadFunction -}; -export type LetsadsSmsMessageStatusItemKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'sms_id' | 'Status' | LetsadsSmsMessageStatusItemKeySpecifier)[]; -export type LetsadsSmsMessageStatusItemFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - sms_id?: FieldPolicy | FieldReadFunction, - Status?: FieldPolicy | FieldReadFunction -}; -export type SmsProviderResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | SmsProviderResponseKeySpecifier)[]; -export type SmsProviderResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; -export type UserResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | UserResponseKeySpecifier)[]; -export type UserResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; -export type ResetPasswordResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | ResetPasswordResponseKeySpecifier)[]; -export type ResetPasswordResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; -export type ResetPasswordKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'code' | 'password' | 'validTill' | 'User' | ResetPasswordKeySpecifier)[]; -export type ResetPasswordFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - code?: FieldPolicy | FieldReadFunction, - password?: FieldPolicy | FieldReadFunction, - validTill?: FieldPolicy | FieldReadFunction, - User?: FieldPolicy | FieldReadFunction -}; -export type TemplateResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | TemplateResponseKeySpecifier)[]; -export type TemplateResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; -export type GalleryResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | GalleryResponseKeySpecifier)[]; -export type GalleryResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; -export type GameResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | GameResponseKeySpecifier)[]; -export type GameResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; -export type GameResultResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | GameResultResponseKeySpecifier)[]; -export type GameResultResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; -export type TournamentResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | TournamentResponseKeySpecifier)[]; -export type TournamentResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; -export type TournamentGroupResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | TournamentGroupResponseKeySpecifier)[]; -export type TournamentGroupResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; -export type TourneyResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | TourneyResponseKeySpecifier)[]; -export type TourneyResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; -export type ChatRoomResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | ChatRoomResponseKeySpecifier)[]; -export type ChatRoomResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; -export type ChatMessageReadedResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | ChatMessageReadedResponseKeySpecifier)[]; -export type ChatMessageReadedResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; -export type ChatMessageResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | ChatMessageResponseKeySpecifier)[]; -export type ChatMessageResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; -export type EthContractSourceResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | EthContractSourceResponseKeySpecifier)[]; -export type EthContractSourceResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; -export type EthTransactionResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | EthTransactionResponseKeySpecifier)[]; -export type EthTransactionResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; -export type CallRequestResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | CallRequestResponseKeySpecifier)[]; -export type CallRequestResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; -export type ProjectResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | ProjectResponseKeySpecifier)[]; -export type ProjectResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; -export type ProjectMemberResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | ProjectMemberResponseKeySpecifier)[]; -export type ProjectMemberResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; -export type TaskResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | TaskResponseKeySpecifier)[]; -export type TaskResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; -export type TaskReactionResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | TaskReactionResponseKeySpecifier)[]; -export type TaskReactionResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; -export type TimerResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | TimerResponseKeySpecifier)[]; -export type TimerResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; -export type TeamResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | TeamResponseKeySpecifier)[]; -export type TeamResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; -export type TeamMemberResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | TeamMemberResponseKeySpecifier)[]; -export type TeamMemberResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; -export type ServiceResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | ServiceResponseKeySpecifier)[]; -export type ServiceResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; -export type PositionResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | PositionResponseKeySpecifier)[]; -export type PositionResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; -export type RouteResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | RouteResponseKeySpecifier)[]; -export type RouteResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; -export type SubscriptionKeySpecifier = ('gallery' | 'player' | 'world' | 'message' | 'notice' | 'chatMessageReaded' | 'chatRoom' | 'game' | 'gameResult' | 'tournament' | 'tournamentGroup' | 'tourney' | 'ethTransaction' | 'callRequest' | 'position' | 'projectMember' | 'service' | 'task' | 'taskReaction' | 'teamMember' | 'timer' | 'route' | 'codeChallenge' | 'codeChallengeBlock' | 'comment' | 'technologyLesson' | 'career' | 'technologyLessonUser' | 'userTechnology' | 'technology' | 'team' | 'project' | 'template' | 'resource' | 'chatMessage' | 'user' | SubscriptionKeySpecifier)[]; -export type SubscriptionFieldPolicy = { - gallery?: FieldPolicy | FieldReadFunction, - player?: FieldPolicy | FieldReadFunction, - world?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - notice?: FieldPolicy | FieldReadFunction, - chatMessageReaded?: FieldPolicy | FieldReadFunction, - chatRoom?: FieldPolicy | FieldReadFunction, - game?: FieldPolicy | FieldReadFunction, - gameResult?: FieldPolicy | FieldReadFunction, - tournament?: FieldPolicy | FieldReadFunction, - tournamentGroup?: FieldPolicy | FieldReadFunction, - tourney?: FieldPolicy | FieldReadFunction, - ethTransaction?: FieldPolicy | FieldReadFunction, - callRequest?: FieldPolicy | FieldReadFunction, - position?: FieldPolicy | FieldReadFunction, - projectMember?: FieldPolicy | FieldReadFunction, - service?: FieldPolicy | FieldReadFunction, - task?: FieldPolicy | FieldReadFunction, - taskReaction?: FieldPolicy | FieldReadFunction, - teamMember?: FieldPolicy | FieldReadFunction, - timer?: FieldPolicy | FieldReadFunction, - route?: FieldPolicy | FieldReadFunction, - codeChallenge?: FieldPolicy | FieldReadFunction, - codeChallengeBlock?: FieldPolicy | FieldReadFunction, - comment?: FieldPolicy | FieldReadFunction, - technologyLesson?: FieldPolicy | FieldReadFunction, - career?: FieldPolicy | FieldReadFunction, - technologyLessonUser?: FieldPolicy | FieldReadFunction, - userTechnology?: FieldPolicy | FieldReadFunction, - technology?: FieldPolicy | FieldReadFunction, - team?: FieldPolicy | FieldReadFunction, - project?: FieldPolicy | FieldReadFunction, - template?: FieldPolicy | FieldReadFunction, - resource?: FieldPolicy | FieldReadFunction, - chatMessage?: FieldPolicy | FieldReadFunction, - user?: FieldPolicy | FieldReadFunction -}; -export type GallerySubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | GallerySubscriptionPayloadKeySpecifier)[]; -export type GallerySubscriptionPayloadFieldPolicy = { - mutation?: FieldPolicy | FieldReadFunction, - node?: FieldPolicy | FieldReadFunction, - updatedFields?: FieldPolicy | FieldReadFunction, - previousValues?: FieldPolicy | FieldReadFunction -}; -export type GalleryPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | GalleryPreviousValuesKeySpecifier)[]; -export type GalleryPreviousValuesFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - name?: FieldPolicy | FieldReadFunction -}; -export type PlayerSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | PlayerSubscriptionPayloadKeySpecifier)[]; -export type PlayerSubscriptionPayloadFieldPolicy = { - mutation?: FieldPolicy | FieldReadFunction, - node?: FieldPolicy | FieldReadFunction, - updatedFields?: FieldPolicy | FieldReadFunction, - previousValues?: FieldPolicy | FieldReadFunction -}; -export type PlayerPreviousValuesKeySpecifier = ('createdAt' | 'updatedAt' | 'id' | 'isAdmin' | 'gamemode' | 'lastLogin' | 'x' | 'y' | 'z' | 'dirx' | 'diry' | PlayerPreviousValuesKeySpecifier)[]; -export type PlayerPreviousValuesFieldPolicy = { - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - id?: FieldPolicy | FieldReadFunction, - isAdmin?: FieldPolicy | FieldReadFunction, - gamemode?: FieldPolicy | FieldReadFunction, - lastLogin?: FieldPolicy | FieldReadFunction, - x?: FieldPolicy | FieldReadFunction, - y?: FieldPolicy | FieldReadFunction, - z?: FieldPolicy | FieldReadFunction, - dirx?: FieldPolicy | FieldReadFunction, - diry?: FieldPolicy | FieldReadFunction -}; -export type WorldSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | WorldSubscriptionPayloadKeySpecifier)[]; -export type WorldSubscriptionPayloadFieldPolicy = { - mutation?: FieldPolicy | FieldReadFunction, - node?: FieldPolicy | FieldReadFunction, - updatedFields?: FieldPolicy | FieldReadFunction, - previousValues?: FieldPolicy | FieldReadFunction -}; -export type WorldPreviousValuesKeySpecifier = ('createdAt' | 'updatedAt' | 'id' | 'name' | 'seed' | 'type' | 'time' | 'timeChanger' | 'days' | 'lastPlayed' | WorldPreviousValuesKeySpecifier)[]; -export type WorldPreviousValuesFieldPolicy = { - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - id?: FieldPolicy | FieldReadFunction, - name?: FieldPolicy | FieldReadFunction, - seed?: FieldPolicy | FieldReadFunction, - type?: FieldPolicy | FieldReadFunction, - time?: FieldPolicy | FieldReadFunction, - timeChanger?: FieldPolicy | FieldReadFunction, - days?: FieldPolicy | FieldReadFunction, - lastPlayed?: FieldPolicy | FieldReadFunction -}; -export type MessageSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | MessageSubscriptionPayloadKeySpecifier)[]; -export type MessageSubscriptionPayloadFieldPolicy = { - mutation?: FieldPolicy | FieldReadFunction, - node?: FieldPolicy | FieldReadFunction, - updatedFields?: FieldPolicy | FieldReadFunction, - previousValues?: FieldPolicy | FieldReadFunction -}; -export type MessagePreviousValuesKeySpecifier = ('id' | 'type' | 'sender' | 'body' | MessagePreviousValuesKeySpecifier)[]; -export type MessagePreviousValuesFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - type?: FieldPolicy | FieldReadFunction, - sender?: FieldPolicy | FieldReadFunction, - body?: FieldPolicy | FieldReadFunction -}; -export type NoticeSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | NoticeSubscriptionPayloadKeySpecifier)[]; -export type NoticeSubscriptionPayloadFieldPolicy = { - mutation?: FieldPolicy | FieldReadFunction, - node?: FieldPolicy | FieldReadFunction, - updatedFields?: FieldPolicy | FieldReadFunction, - previousValues?: FieldPolicy | FieldReadFunction -}; -export type NoticePreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'type' | NoticePreviousValuesKeySpecifier)[]; -export type NoticePreviousValuesFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - type?: FieldPolicy | FieldReadFunction -}; -export type ChatMessageReadedSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | ChatMessageReadedSubscriptionPayloadKeySpecifier)[]; -export type ChatMessageReadedSubscriptionPayloadFieldPolicy = { - mutation?: FieldPolicy | FieldReadFunction, - node?: FieldPolicy | FieldReadFunction, - updatedFields?: FieldPolicy | FieldReadFunction, - previousValues?: FieldPolicy | FieldReadFunction -}; -export type ChatMessageReadedPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | ChatMessageReadedPreviousValuesKeySpecifier)[]; -export type ChatMessageReadedPreviousValuesFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction -}; -export type ChatRoomSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | ChatRoomSubscriptionPayloadKeySpecifier)[]; -export type ChatRoomSubscriptionPayloadFieldPolicy = { - mutation?: FieldPolicy | FieldReadFunction, - node?: FieldPolicy | FieldReadFunction, - updatedFields?: FieldPolicy | FieldReadFunction, - previousValues?: FieldPolicy | FieldReadFunction -}; -export type ChatRoomPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'description' | 'image' | 'code' | 'isPublic' | 'allowAnonymous' | 'sandbox' | ChatRoomPreviousValuesKeySpecifier)[]; -export type ChatRoomPreviousValuesFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - name?: FieldPolicy | FieldReadFunction, - description?: FieldPolicy | FieldReadFunction, - image?: FieldPolicy | FieldReadFunction, - code?: FieldPolicy | FieldReadFunction, - isPublic?: FieldPolicy | FieldReadFunction, - allowAnonymous?: FieldPolicy | FieldReadFunction, - sandbox?: FieldPolicy | FieldReadFunction -}; -export type GameSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | GameSubscriptionPayloadKeySpecifier)[]; -export type GameSubscriptionPayloadFieldPolicy = { - mutation?: FieldPolicy | FieldReadFunction, - node?: FieldPolicy | FieldReadFunction, - updatedFields?: FieldPolicy | FieldReadFunction, - previousValues?: FieldPolicy | FieldReadFunction -}; -export type GamePreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'start_date' | 'end_date' | 'sequence' | GamePreviousValuesKeySpecifier)[]; -export type GamePreviousValuesFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - name?: FieldPolicy | FieldReadFunction, - start_date?: FieldPolicy | FieldReadFunction, - end_date?: FieldPolicy | FieldReadFunction, - sequence?: FieldPolicy | FieldReadFunction -}; -export type GameResultSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | GameResultSubscriptionPayloadKeySpecifier)[]; -export type GameResultSubscriptionPayloadFieldPolicy = { - mutation?: FieldPolicy | FieldReadFunction, - node?: FieldPolicy | FieldReadFunction, - updatedFields?: FieldPolicy | FieldReadFunction, - previousValues?: FieldPolicy | FieldReadFunction -}; -export type GameResultPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'date' | 'name' | 'value' | GameResultPreviousValuesKeySpecifier)[]; -export type GameResultPreviousValuesFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - date?: FieldPolicy | FieldReadFunction, - name?: FieldPolicy | FieldReadFunction, - value?: FieldPolicy | FieldReadFunction -}; -export type TournamentSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | TournamentSubscriptionPayloadKeySpecifier)[]; -export type TournamentSubscriptionPayloadFieldPolicy = { - mutation?: FieldPolicy | FieldReadFunction, - node?: FieldPolicy | FieldReadFunction, - updatedFields?: FieldPolicy | FieldReadFunction, - previousValues?: FieldPolicy | FieldReadFunction -}; -export type TournamentPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'code' | TournamentPreviousValuesKeySpecifier)[]; -export type TournamentPreviousValuesFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - name?: FieldPolicy | FieldReadFunction, - code?: FieldPolicy | FieldReadFunction -}; -export type TournamentGroupSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | TournamentGroupSubscriptionPayloadKeySpecifier)[]; -export type TournamentGroupSubscriptionPayloadFieldPolicy = { - mutation?: FieldPolicy | FieldReadFunction, - node?: FieldPolicy | FieldReadFunction, - updatedFields?: FieldPolicy | FieldReadFunction, - previousValues?: FieldPolicy | FieldReadFunction -}; -export type TournamentGroupPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'code' | TournamentGroupPreviousValuesKeySpecifier)[]; -export type TournamentGroupPreviousValuesFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - name?: FieldPolicy | FieldReadFunction, - code?: FieldPolicy | FieldReadFunction -}; -export type TourneySubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | TourneySubscriptionPayloadKeySpecifier)[]; -export type TourneySubscriptionPayloadFieldPolicy = { - mutation?: FieldPolicy | FieldReadFunction, - node?: FieldPolicy | FieldReadFunction, - updatedFields?: FieldPolicy | FieldReadFunction, - previousValues?: FieldPolicy | FieldReadFunction -}; -export type TourneyPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'code' | 'date' | 'date_till' | TourneyPreviousValuesKeySpecifier)[]; -export type TourneyPreviousValuesFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - name?: FieldPolicy | FieldReadFunction, - code?: FieldPolicy | FieldReadFunction, - date?: FieldPolicy | FieldReadFunction, - date_till?: FieldPolicy | FieldReadFunction -}; -export type EthTransactionSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | EthTransactionSubscriptionPayloadKeySpecifier)[]; -export type EthTransactionSubscriptionPayloadFieldPolicy = { - mutation?: FieldPolicy | FieldReadFunction, - node?: FieldPolicy | FieldReadFunction -}; -export type CallRequestSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | CallRequestSubscriptionPayloadKeySpecifier)[]; -export type CallRequestSubscriptionPayloadFieldPolicy = { - mutation?: FieldPolicy | FieldReadFunction, - node?: FieldPolicy | FieldReadFunction, - updatedFields?: FieldPolicy | FieldReadFunction, - previousValues?: FieldPolicy | FieldReadFunction -}; -export type CallRequestPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'called_descriptions' | 'caller_descriptions' | 'status' | 'startedAt' | 'endedAt' | CallRequestPreviousValuesKeySpecifier)[]; -export type CallRequestPreviousValuesFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - called_descriptions?: FieldPolicy | FieldReadFunction, - caller_descriptions?: FieldPolicy | FieldReadFunction, - status?: FieldPolicy | FieldReadFunction, - startedAt?: FieldPolicy | FieldReadFunction, - endedAt?: FieldPolicy | FieldReadFunction -}; -export type PositionSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | PositionSubscriptionPayloadKeySpecifier)[]; -export type PositionSubscriptionPayloadFieldPolicy = { - mutation?: FieldPolicy | FieldReadFunction, - node?: FieldPolicy | FieldReadFunction, - updatedFields?: FieldPolicy | FieldReadFunction, - previousValues?: FieldPolicy | FieldReadFunction -}; -export type PositionPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'code' | 'name' | PositionPreviousValuesKeySpecifier)[]; -export type PositionPreviousValuesFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - code?: FieldPolicy | FieldReadFunction, - name?: FieldPolicy | FieldReadFunction -}; -export type ProjectMemberSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | ProjectMemberSubscriptionPayloadKeySpecifier)[]; -export type ProjectMemberSubscriptionPayloadFieldPolicy = { - mutation?: FieldPolicy | FieldReadFunction, - node?: FieldPolicy | FieldReadFunction, - updatedFields?: FieldPolicy | FieldReadFunction, - previousValues?: FieldPolicy | FieldReadFunction -}; -export type ProjectMemberPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'status' | ProjectMemberPreviousValuesKeySpecifier)[]; -export type ProjectMemberPreviousValuesFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - status?: FieldPolicy | FieldReadFunction -}; -export type ServiceSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | ServiceSubscriptionPayloadKeySpecifier)[]; -export type ServiceSubscriptionPayloadFieldPolicy = { - mutation?: FieldPolicy | FieldReadFunction, - node?: FieldPolicy | FieldReadFunction, - updatedFields?: FieldPolicy | FieldReadFunction, - previousValues?: FieldPolicy | FieldReadFunction -}; -export type ServicePreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'description' | 'code' | 'rank' | 'oldID' | ServicePreviousValuesKeySpecifier)[]; -export type ServicePreviousValuesFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - name?: FieldPolicy | FieldReadFunction, - description?: FieldPolicy | FieldReadFunction, - code?: FieldPolicy | FieldReadFunction, - rank?: FieldPolicy | FieldReadFunction, - oldID?: FieldPolicy | FieldReadFunction -}; -export type TaskSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | TaskSubscriptionPayloadKeySpecifier)[]; -export type TaskSubscriptionPayloadFieldPolicy = { - mutation?: FieldPolicy | FieldReadFunction, - node?: FieldPolicy | FieldReadFunction, - updatedFields?: FieldPolicy | FieldReadFunction, - previousValues?: FieldPolicy | FieldReadFunction -}; -export type TaskPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'description' | 'content' | 'status' | 'startDatePlaning' | 'endDatePlaning' | 'startDate' | 'endDate' | TaskPreviousValuesKeySpecifier)[]; -export type TaskPreviousValuesFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - name?: FieldPolicy | FieldReadFunction, - description?: FieldPolicy | FieldReadFunction, - content?: FieldPolicy | FieldReadFunction, - status?: FieldPolicy | FieldReadFunction, - startDatePlaning?: FieldPolicy | FieldReadFunction, - endDatePlaning?: FieldPolicy | FieldReadFunction, - startDate?: FieldPolicy | FieldReadFunction, - endDate?: FieldPolicy | FieldReadFunction -}; -export type TaskReactionSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | TaskReactionSubscriptionPayloadKeySpecifier)[]; -export type TaskReactionSubscriptionPayloadFieldPolicy = { - mutation?: FieldPolicy | FieldReadFunction, - node?: FieldPolicy | FieldReadFunction, - updatedFields?: FieldPolicy | FieldReadFunction, - previousValues?: FieldPolicy | FieldReadFunction -}; -export type TaskReactionPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'type' | TaskReactionPreviousValuesKeySpecifier)[]; -export type TaskReactionPreviousValuesFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - type?: FieldPolicy | FieldReadFunction -}; -export type TeamMemberSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | TeamMemberSubscriptionPayloadKeySpecifier)[]; -export type TeamMemberSubscriptionPayloadFieldPolicy = { - mutation?: FieldPolicy | FieldReadFunction, - node?: FieldPolicy | FieldReadFunction, - updatedFields?: FieldPolicy | FieldReadFunction, - previousValues?: FieldPolicy | FieldReadFunction -}; -export type TeamMemberPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'status' | TeamMemberPreviousValuesKeySpecifier)[]; -export type TeamMemberPreviousValuesFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - status?: FieldPolicy | FieldReadFunction + message?: FieldPolicy | FieldReadFunction, + errors?: FieldPolicy | FieldReadFunction, + data?: FieldPolicy | FieldReadFunction }; -export type TimerSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | TimerSubscriptionPayloadKeySpecifier)[]; -export type TimerSubscriptionPayloadFieldPolicy = { - mutation?: FieldPolicy | FieldReadFunction, - node?: FieldPolicy | FieldReadFunction, - updatedFields?: FieldPolicy | FieldReadFunction, - previousValues?: FieldPolicy | FieldReadFunction +export type ResetPasswordResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | ResetPasswordResponseKeySpecifier)[]; +export type ResetPasswordResponseFieldPolicy = { + success?: FieldPolicy | FieldReadFunction, + message?: FieldPolicy | FieldReadFunction, + errors?: FieldPolicy | FieldReadFunction, + data?: FieldPolicy | FieldReadFunction }; -export type TimerPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'stopedAt' | TimerPreviousValuesKeySpecifier)[]; -export type TimerPreviousValuesFieldPolicy = { +export type ResetPasswordKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'code' | 'password' | 'validTill' | 'User' | ResetPasswordKeySpecifier)[]; +export type ResetPasswordFieldPolicy = { id?: FieldPolicy | FieldReadFunction, createdAt?: FieldPolicy | FieldReadFunction, updatedAt?: FieldPolicy | FieldReadFunction, - stopedAt?: FieldPolicy | FieldReadFunction + code?: FieldPolicy | FieldReadFunction, + password?: FieldPolicy | FieldReadFunction, + validTill?: FieldPolicy | FieldReadFunction, + User?: FieldPolicy | FieldReadFunction +}; +export type SubscriptionKeySpecifier = ('route' | 'ethTransaction' | 'chatMessageReaded' | 'chatRoom' | 'notice' | 'game' | 'gameResult' | 'tournament' | 'tournamentGroup' | 'tourney' | 'callRequest' | 'user' | 'chatMessage' | SubscriptionKeySpecifier)[]; +export type SubscriptionFieldPolicy = { + route?: FieldPolicy | FieldReadFunction, + ethTransaction?: FieldPolicy | FieldReadFunction, + chatMessageReaded?: FieldPolicy | FieldReadFunction, + chatRoom?: FieldPolicy | FieldReadFunction, + notice?: FieldPolicy | FieldReadFunction, + game?: FieldPolicy | FieldReadFunction, + gameResult?: FieldPolicy | FieldReadFunction, + tournament?: FieldPolicy | FieldReadFunction, + tournamentGroup?: FieldPolicy | FieldReadFunction, + tourney?: FieldPolicy | FieldReadFunction, + callRequest?: FieldPolicy | FieldReadFunction, + user?: FieldPolicy | FieldReadFunction, + chatMessage?: FieldPolicy | FieldReadFunction }; export type RouteSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | RouteSubscriptionPayloadKeySpecifier)[]; export type RouteSubscriptionPayloadFieldPolicy = { @@ -2454,251 +1217,171 @@ export type RoutePreviousValuesFieldPolicy = { exact?: FieldPolicy | FieldReadFunction, component?: FieldPolicy | FieldReadFunction }; -export type CodeChallengeSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | CodeChallengeSubscriptionPayloadKeySpecifier)[]; -export type CodeChallengeSubscriptionPayloadFieldPolicy = { - mutation?: FieldPolicy | FieldReadFunction, - node?: FieldPolicy | FieldReadFunction, - updatedFields?: FieldPolicy | FieldReadFunction, - previousValues?: FieldPolicy | FieldReadFunction -}; -export type CodeChallengePreviousValuesKeySpecifier = ('id' | 'externalKey' | 'createdAt' | 'updatedAt' | 'name' | 'dashedName' | 'localeTitle' | 'description' | 'challengeType' | 'forumTopicId' | 'translations' | 'tests' | 'solutions' | 'instructions' | 'files' | 'videoUrl' | 'order' | 'superOrder' | 'challengeOrder' | 'required' | 'isRequired' | 'isPrivate' | 'isBeta' | 'template' | 'time' | 'rank' | CodeChallengePreviousValuesKeySpecifier)[]; -export type CodeChallengePreviousValuesFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - externalKey?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - name?: FieldPolicy | FieldReadFunction, - dashedName?: FieldPolicy | FieldReadFunction, - localeTitle?: FieldPolicy | FieldReadFunction, - description?: FieldPolicy | FieldReadFunction, - challengeType?: FieldPolicy | FieldReadFunction, - forumTopicId?: FieldPolicy | FieldReadFunction, - translations?: FieldPolicy | FieldReadFunction, - tests?: FieldPolicy | FieldReadFunction, - solutions?: FieldPolicy | FieldReadFunction, - instructions?: FieldPolicy | FieldReadFunction, - files?: FieldPolicy | FieldReadFunction, - videoUrl?: FieldPolicy | FieldReadFunction, - order?: FieldPolicy | FieldReadFunction, - superOrder?: FieldPolicy | FieldReadFunction, - challengeOrder?: FieldPolicy | FieldReadFunction, - required?: FieldPolicy | FieldReadFunction, - isRequired?: FieldPolicy | FieldReadFunction, - isPrivate?: FieldPolicy | FieldReadFunction, - isBeta?: FieldPolicy | FieldReadFunction, - template?: FieldPolicy | FieldReadFunction, - time?: FieldPolicy | FieldReadFunction, - rank?: FieldPolicy | FieldReadFunction -}; -export type CodeChallengeBlockSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | CodeChallengeBlockSubscriptionPayloadKeySpecifier)[]; -export type CodeChallengeBlockSubscriptionPayloadFieldPolicy = { - mutation?: FieldPolicy | FieldReadFunction, - node?: FieldPolicy | FieldReadFunction, - updatedFields?: FieldPolicy | FieldReadFunction, - previousValues?: FieldPolicy | FieldReadFunction -}; -export type CodeChallengeBlockPreviousValuesKeySpecifier = ('id' | 'externalKey' | 'createdAt' | 'updatedAt' | 'name' | 'rank' | CodeChallengeBlockPreviousValuesKeySpecifier)[]; -export type CodeChallengeBlockPreviousValuesFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - externalKey?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - name?: FieldPolicy | FieldReadFunction, - rank?: FieldPolicy | FieldReadFunction -}; -export type CommentSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | CommentSubscriptionPayloadKeySpecifier)[]; -export type CommentSubscriptionPayloadFieldPolicy = { +export type EthTransactionSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | EthTransactionSubscriptionPayloadKeySpecifier)[]; +export type EthTransactionSubscriptionPayloadFieldPolicy = { mutation?: FieldPolicy | FieldReadFunction, node?: FieldPolicy | FieldReadFunction, updatedFields?: FieldPolicy | FieldReadFunction, previousValues?: FieldPolicy | FieldReadFunction }; -export type CommentPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'components' | 'contentText' | CommentPreviousValuesKeySpecifier)[]; -export type CommentPreviousValuesFieldPolicy = { +export type EthTransactionPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'chainId' | 'amount' | 'input' | 'index' | 'address' | 'type' | 'v' | 'r' | 's' | EthTransactionPreviousValuesKeySpecifier)[]; +export type EthTransactionPreviousValuesFieldPolicy = { id?: FieldPolicy | FieldReadFunction, createdAt?: FieldPolicy | FieldReadFunction, updatedAt?: FieldPolicy | FieldReadFunction, - components?: FieldPolicy | FieldReadFunction, - contentText?: FieldPolicy | FieldReadFunction + chainId?: FieldPolicy | FieldReadFunction, + amount?: FieldPolicy | FieldReadFunction, + input?: FieldPolicy | FieldReadFunction, + index?: FieldPolicy | FieldReadFunction, + address?: FieldPolicy | FieldReadFunction, + type?: FieldPolicy | FieldReadFunction, + v?: FieldPolicy | FieldReadFunction, + r?: FieldPolicy | FieldReadFunction, + s?: FieldPolicy | FieldReadFunction }; -export type TechnologyLessonSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | TechnologyLessonSubscriptionPayloadKeySpecifier)[]; -export type TechnologyLessonSubscriptionPayloadFieldPolicy = { +export type ChatMessageReadedSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | ChatMessageReadedSubscriptionPayloadKeySpecifier)[]; +export type ChatMessageReadedSubscriptionPayloadFieldPolicy = { mutation?: FieldPolicy | FieldReadFunction, node?: FieldPolicy | FieldReadFunction, updatedFields?: FieldPolicy | FieldReadFunction, previousValues?: FieldPolicy | FieldReadFunction }; -export type TechnologyLessonPreviousValuesKeySpecifier = ('id' | 'name' | 'components' | 'contentText' | TechnologyLessonPreviousValuesKeySpecifier)[]; -export type TechnologyLessonPreviousValuesFieldPolicy = { +export type ChatMessageReadedPreviousValuesKeySpecifier = ('id' | 'createdAt' | ChatMessageReadedPreviousValuesKeySpecifier)[]; +export type ChatMessageReadedPreviousValuesFieldPolicy = { id?: FieldPolicy | FieldReadFunction, - name?: FieldPolicy | FieldReadFunction, - components?: FieldPolicy | FieldReadFunction, - contentText?: FieldPolicy | FieldReadFunction + createdAt?: FieldPolicy | FieldReadFunction }; -export type CareerSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | CareerSubscriptionPayloadKeySpecifier)[]; -export type CareerSubscriptionPayloadFieldPolicy = { +export type ChatRoomSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | ChatRoomSubscriptionPayloadKeySpecifier)[]; +export type ChatRoomSubscriptionPayloadFieldPolicy = { mutation?: FieldPolicy | FieldReadFunction, node?: FieldPolicy | FieldReadFunction, updatedFields?: FieldPolicy | FieldReadFunction, previousValues?: FieldPolicy | FieldReadFunction }; -export type CareerPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'description' | 'start_date' | CareerPreviousValuesKeySpecifier)[]; -export type CareerPreviousValuesFieldPolicy = { +export type ChatRoomPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'description' | 'image' | 'code' | 'isPublic' | ChatRoomPreviousValuesKeySpecifier)[]; +export type ChatRoomPreviousValuesFieldPolicy = { id?: FieldPolicy | FieldReadFunction, createdAt?: FieldPolicy | FieldReadFunction, updatedAt?: FieldPolicy | FieldReadFunction, name?: FieldPolicy | FieldReadFunction, description?: FieldPolicy | FieldReadFunction, - start_date?: FieldPolicy | FieldReadFunction + image?: FieldPolicy | FieldReadFunction, + code?: FieldPolicy | FieldReadFunction, + isPublic?: FieldPolicy | FieldReadFunction }; -export type TechnologyLessonUserSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | TechnologyLessonUserSubscriptionPayloadKeySpecifier)[]; -export type TechnologyLessonUserSubscriptionPayloadFieldPolicy = { +export type NoticeSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | NoticeSubscriptionPayloadKeySpecifier)[]; +export type NoticeSubscriptionPayloadFieldPolicy = { mutation?: FieldPolicy | FieldReadFunction, node?: FieldPolicy | FieldReadFunction, updatedFields?: FieldPolicy | FieldReadFunction, previousValues?: FieldPolicy | FieldReadFunction }; -export type TechnologyLessonUserPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'status' | 'completedAt' | TechnologyLessonUserPreviousValuesKeySpecifier)[]; -export type TechnologyLessonUserPreviousValuesFieldPolicy = { +export type NoticePreviousValuesKeySpecifier = ('id' | 'createdAt' | 'type' | NoticePreviousValuesKeySpecifier)[]; +export type NoticePreviousValuesFieldPolicy = { id?: FieldPolicy | FieldReadFunction, createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - status?: FieldPolicy | FieldReadFunction, - completedAt?: FieldPolicy | FieldReadFunction + type?: FieldPolicy | FieldReadFunction }; -export type UserTechnologySubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | UserTechnologySubscriptionPayloadKeySpecifier)[]; -export type UserTechnologySubscriptionPayloadFieldPolicy = { +export type GameSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | GameSubscriptionPayloadKeySpecifier)[]; +export type GameSubscriptionPayloadFieldPolicy = { mutation?: FieldPolicy | FieldReadFunction, node?: FieldPolicy | FieldReadFunction, updatedFields?: FieldPolicy | FieldReadFunction, previousValues?: FieldPolicy | FieldReadFunction }; -export type UserTechnologyPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'components' | 'date_from' | 'date_till' | 'status' | UserTechnologyPreviousValuesKeySpecifier)[]; -export type UserTechnologyPreviousValuesFieldPolicy = { +export type GamePreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'start_date' | 'end_date' | 'sequence' | GamePreviousValuesKeySpecifier)[]; +export type GamePreviousValuesFieldPolicy = { id?: FieldPolicy | FieldReadFunction, createdAt?: FieldPolicy | FieldReadFunction, updatedAt?: FieldPolicy | FieldReadFunction, - components?: FieldPolicy | FieldReadFunction, - date_from?: FieldPolicy | FieldReadFunction, - date_till?: FieldPolicy | FieldReadFunction, - status?: FieldPolicy | FieldReadFunction + name?: FieldPolicy | FieldReadFunction, + start_date?: FieldPolicy | FieldReadFunction, + end_date?: FieldPolicy | FieldReadFunction, + sequence?: FieldPolicy | FieldReadFunction }; -export type TechnologySubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | TechnologySubscriptionPayloadKeySpecifier)[]; -export type TechnologySubscriptionPayloadFieldPolicy = { +export type GameResultSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | GameResultSubscriptionPayloadKeySpecifier)[]; +export type GameResultSubscriptionPayloadFieldPolicy = { mutation?: FieldPolicy | FieldReadFunction, node?: FieldPolicy | FieldReadFunction, updatedFields?: FieldPolicy | FieldReadFunction, previousValues?: FieldPolicy | FieldReadFunction }; -export type TechnologyPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'components' | 'contentText' | 'site_url' | TechnologyPreviousValuesKeySpecifier)[]; -export type TechnologyPreviousValuesFieldPolicy = { +export type GameResultPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'date' | 'name' | 'value' | GameResultPreviousValuesKeySpecifier)[]; +export type GameResultPreviousValuesFieldPolicy = { id?: FieldPolicy | FieldReadFunction, createdAt?: FieldPolicy | FieldReadFunction, updatedAt?: FieldPolicy | FieldReadFunction, + date?: FieldPolicy | FieldReadFunction, name?: FieldPolicy | FieldReadFunction, - components?: FieldPolicy | FieldReadFunction, - contentText?: FieldPolicy | FieldReadFunction, - site_url?: FieldPolicy | FieldReadFunction + value?: FieldPolicy | FieldReadFunction }; -export type TeamSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | TeamSubscriptionPayloadKeySpecifier)[]; -export type TeamSubscriptionPayloadFieldPolicy = { +export type TournamentSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | TournamentSubscriptionPayloadKeySpecifier)[]; +export type TournamentSubscriptionPayloadFieldPolicy = { mutation?: FieldPolicy | FieldReadFunction, node?: FieldPolicy | FieldReadFunction, updatedFields?: FieldPolicy | FieldReadFunction, previousValues?: FieldPolicy | FieldReadFunction }; -export type TeamPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'status' | 'oldID' | 'address' | 'website' | 'email' | 'phone' | TeamPreviousValuesKeySpecifier)[]; -export type TeamPreviousValuesFieldPolicy = { +export type TournamentPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'code' | TournamentPreviousValuesKeySpecifier)[]; +export type TournamentPreviousValuesFieldPolicy = { id?: FieldPolicy | FieldReadFunction, createdAt?: FieldPolicy | FieldReadFunction, updatedAt?: FieldPolicy | FieldReadFunction, name?: FieldPolicy | FieldReadFunction, - status?: FieldPolicy | FieldReadFunction, - oldID?: FieldPolicy | FieldReadFunction, - address?: FieldPolicy | FieldReadFunction, - website?: FieldPolicy | FieldReadFunction, - email?: FieldPolicy | FieldReadFunction, - phone?: FieldPolicy | FieldReadFunction + code?: FieldPolicy | FieldReadFunction }; -export type ProjectSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | ProjectSubscriptionPayloadKeySpecifier)[]; -export type ProjectSubscriptionPayloadFieldPolicy = { +export type TournamentGroupSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | TournamentGroupSubscriptionPayloadKeySpecifier)[]; +export type TournamentGroupSubscriptionPayloadFieldPolicy = { mutation?: FieldPolicy | FieldReadFunction, node?: FieldPolicy | FieldReadFunction, updatedFields?: FieldPolicy | FieldReadFunction, previousValues?: FieldPolicy | FieldReadFunction }; -export type ProjectPreviousValuesKeySpecifier = ('id' | 'name' | 'domain' | 'createdAt' | 'updatedAt' | 'description' | 'url' | 'sequence' | 'content' | 'contentText' | 'status' | 'public' | 'oldID' | 'type' | ProjectPreviousValuesKeySpecifier)[]; -export type ProjectPreviousValuesFieldPolicy = { +export type TournamentGroupPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'code' | TournamentGroupPreviousValuesKeySpecifier)[]; +export type TournamentGroupPreviousValuesFieldPolicy = { id?: FieldPolicy | FieldReadFunction, - name?: FieldPolicy | FieldReadFunction, - domain?: FieldPolicy | FieldReadFunction, createdAt?: FieldPolicy | FieldReadFunction, updatedAt?: FieldPolicy | FieldReadFunction, - description?: FieldPolicy | FieldReadFunction, - url?: FieldPolicy | FieldReadFunction, - sequence?: FieldPolicy | FieldReadFunction, - content?: FieldPolicy | FieldReadFunction, - contentText?: FieldPolicy | FieldReadFunction, - status?: FieldPolicy | FieldReadFunction, - public?: FieldPolicy | FieldReadFunction, - oldID?: FieldPolicy | FieldReadFunction, - type?: FieldPolicy | FieldReadFunction + name?: FieldPolicy | FieldReadFunction, + code?: FieldPolicy | FieldReadFunction }; -export type TemplateSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | TemplateSubscriptionPayloadKeySpecifier)[]; -export type TemplateSubscriptionPayloadFieldPolicy = { +export type TourneySubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | TourneySubscriptionPayloadKeySpecifier)[]; +export type TourneySubscriptionPayloadFieldPolicy = { mutation?: FieldPolicy | FieldReadFunction, node?: FieldPolicy | FieldReadFunction, updatedFields?: FieldPolicy | FieldReadFunction, previousValues?: FieldPolicy | FieldReadFunction }; -export type TemplatePreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'externalKey' | 'name' | 'description' | 'component' | 'props' | 'components' | 'vars' | 'rank' | TemplatePreviousValuesKeySpecifier)[]; -export type TemplatePreviousValuesFieldPolicy = { +export type TourneyPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'code' | 'date' | 'date_till' | TourneyPreviousValuesKeySpecifier)[]; +export type TourneyPreviousValuesFieldPolicy = { id?: FieldPolicy | FieldReadFunction, createdAt?: FieldPolicy | FieldReadFunction, updatedAt?: FieldPolicy | FieldReadFunction, - externalKey?: FieldPolicy | FieldReadFunction, name?: FieldPolicy | FieldReadFunction, - description?: FieldPolicy | FieldReadFunction, - component?: FieldPolicy | FieldReadFunction, - props?: FieldPolicy | FieldReadFunction, - components?: FieldPolicy | FieldReadFunction, - vars?: FieldPolicy | FieldReadFunction, - rank?: FieldPolicy | FieldReadFunction + code?: FieldPolicy | FieldReadFunction, + date?: FieldPolicy | FieldReadFunction, + date_till?: FieldPolicy | FieldReadFunction }; -export type ResourceSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | ResourceSubscriptionPayloadKeySpecifier)[]; -export type ResourceSubscriptionPayloadFieldPolicy = { +export type CallRequestSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | CallRequestSubscriptionPayloadKeySpecifier)[]; +export type CallRequestSubscriptionPayloadFieldPolicy = { mutation?: FieldPolicy | FieldReadFunction, node?: FieldPolicy | FieldReadFunction, updatedFields?: FieldPolicy | FieldReadFunction, previousValues?: FieldPolicy | FieldReadFunction }; -export type ResourcePreviousValuesKeySpecifier = ('id' | 'code' | 'createdAt' | 'updatedAt' | 'type' | 'name' | 'longtitle' | 'content' | 'contentText' | 'published' | 'deleted' | 'hidemenu' | 'searchable' | 'uri' | 'isfolder' | 'rating' | 'positiveVotesCount' | 'negativeVotesCount' | 'neutralVotesCount' | 'oldID' | 'mockUpdate' | 'components' | 'commentOldID' | 'class_key' | 'template' | ResourcePreviousValuesKeySpecifier)[]; -export type ResourcePreviousValuesFieldPolicy = { +export type CallRequestPreviousValuesKeySpecifier = ('id' | 'called_descriptions' | 'caller_descriptions' | 'status' | 'startedAt' | 'endedAt' | CallRequestPreviousValuesKeySpecifier)[]; +export type CallRequestPreviousValuesFieldPolicy = { id?: FieldPolicy | FieldReadFunction, - code?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - type?: FieldPolicy | FieldReadFunction, - name?: FieldPolicy | FieldReadFunction, - longtitle?: FieldPolicy | FieldReadFunction, - content?: FieldPolicy | FieldReadFunction, - contentText?: FieldPolicy | FieldReadFunction, - published?: FieldPolicy | FieldReadFunction, - deleted?: FieldPolicy | FieldReadFunction, - hidemenu?: FieldPolicy | FieldReadFunction, - searchable?: FieldPolicy | FieldReadFunction, - uri?: FieldPolicy | FieldReadFunction, - isfolder?: FieldPolicy | FieldReadFunction, - rating?: FieldPolicy | FieldReadFunction, - positiveVotesCount?: FieldPolicy | FieldReadFunction, - negativeVotesCount?: FieldPolicy | FieldReadFunction, - neutralVotesCount?: FieldPolicy | FieldReadFunction, - oldID?: FieldPolicy | FieldReadFunction, - mockUpdate?: FieldPolicy | FieldReadFunction, - components?: FieldPolicy | FieldReadFunction, - commentOldID?: FieldPolicy | FieldReadFunction, - class_key?: FieldPolicy | FieldReadFunction, - template?: FieldPolicy | FieldReadFunction + called_descriptions?: FieldPolicy | FieldReadFunction, + caller_descriptions?: FieldPolicy | FieldReadFunction, + status?: FieldPolicy | FieldReadFunction, + startedAt?: FieldPolicy | FieldReadFunction, + endedAt?: FieldPolicy | FieldReadFunction +}; +export type UserSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | UserSubscriptionPayloadKeySpecifier)[]; +export type UserSubscriptionPayloadFieldPolicy = { + mutation?: FieldPolicy | FieldReadFunction, + node?: FieldPolicy | FieldReadFunction }; export type ChatMessageSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | ChatMessageSubscriptionPayloadKeySpecifier)[]; export type ChatMessageSubscriptionPayloadFieldPolicy = { @@ -2715,88 +1398,51 @@ export type ChatMessagePreviousValuesFieldPolicy = { content?: FieldPolicy | FieldReadFunction, contentText?: FieldPolicy | FieldReadFunction }; -export type UserSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | UserSubscriptionPayloadKeySpecifier)[]; -export type UserSubscriptionPayloadFieldPolicy = { - mutation?: FieldPolicy | FieldReadFunction, - node?: FieldPolicy | FieldReadFunction, - updatedFields?: FieldPolicy | FieldReadFunction, - previousValues?: FieldPolicy | FieldReadFunction -}; -export type UserPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'username' | 'email' | 'phone' | 'showEmail' | 'showPhone' | 'password' | 'fullname' | 'image' | 'address' | 'active' | 'activated' | 'deleted' | 'hidden' | 'sudo' | 'marketplaceToken' | 'acceptChatMessageAnonymous' | 'acceptNewChatRoomAnonymous' | 'acceptNewChatRoom' | 'oldID' | UserPreviousValuesKeySpecifier)[]; -export type UserPreviousValuesFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - username?: FieldPolicy | FieldReadFunction, - email?: FieldPolicy | FieldReadFunction, - phone?: FieldPolicy | FieldReadFunction, - showEmail?: FieldPolicy | FieldReadFunction, - showPhone?: FieldPolicy | FieldReadFunction, - password?: FieldPolicy | FieldReadFunction, - fullname?: FieldPolicy | FieldReadFunction, - image?: FieldPolicy | FieldReadFunction, - address?: FieldPolicy | FieldReadFunction, - active?: FieldPolicy | FieldReadFunction, - activated?: FieldPolicy | FieldReadFunction, - deleted?: FieldPolicy | FieldReadFunction, - hidden?: FieldPolicy | FieldReadFunction, - sudo?: FieldPolicy | FieldReadFunction, - marketplaceToken?: FieldPolicy | FieldReadFunction, - acceptChatMessageAnonymous?: FieldPolicy | FieldReadFunction, - acceptNewChatRoomAnonymous?: FieldPolicy | FieldReadFunction, - acceptNewChatRoom?: FieldPolicy | FieldReadFunction, - oldID?: FieldPolicy | FieldReadFunction -}; -export type ImportResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | ImportResponseKeySpecifier)[]; -export type ImportResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction +export type MapPlaceConnectionEdgesKeySpecifier = ('node' | MapPlaceConnectionEdgesKeySpecifier)[]; +export type MapPlaceConnectionEdgesFieldPolicy = { + node?: FieldPolicy | FieldReadFunction }; -export type ImportKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'status' | 'Logs' | 'CreatedBy' | ImportKeySpecifier)[]; -export type ImportFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - name?: FieldPolicy | FieldReadFunction, - status?: FieldPolicy | FieldReadFunction, - Logs?: FieldPolicy | FieldReadFunction, - CreatedBy?: FieldPolicy | FieldReadFunction +export type AccountConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | AccountConnectionKeySpecifier)[]; +export type AccountConnectionFieldPolicy = { + pageInfo?: FieldPolicy | FieldReadFunction, + edges?: FieldPolicy | FieldReadFunction, + aggregate?: FieldPolicy | FieldReadFunction }; -export type LogKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'level' | 'objectType' | 'message' | 'stack' | 'Import' | LogKeySpecifier)[]; -export type LogFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - level?: FieldPolicy | FieldReadFunction, - objectType?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - stack?: FieldPolicy | FieldReadFunction, - Import?: FieldPolicy | FieldReadFunction +export type AccountEdgeKeySpecifier = ('node' | 'cursor' | AccountEdgeKeySpecifier)[]; +export type AccountEdgeFieldPolicy = { + node?: FieldPolicy | FieldReadFunction, + cursor?: FieldPolicy | FieldReadFunction }; -export type AggregateBlockKeySpecifier = ('count' | AggregateBlockKeySpecifier)[]; -export type AggregateBlockFieldPolicy = { +export type AggregateAccountKeySpecifier = ('count' | AggregateAccountKeySpecifier)[]; +export type AggregateAccountFieldPolicy = { count?: FieldPolicy | FieldReadFunction }; -export type AggregateChatMessageReadedKeySpecifier = ('count' | AggregateChatMessageReadedKeySpecifier)[]; -export type AggregateChatMessageReadedFieldPolicy = { - count?: FieldPolicy | FieldReadFunction +export type AccountPreviousValuesKeySpecifier = ('id' | 'balance' | AccountPreviousValuesKeySpecifier)[]; +export type AccountPreviousValuesFieldPolicy = { + id?: FieldPolicy | FieldReadFunction, + balance?: FieldPolicy | FieldReadFunction +}; +export type AccountSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | AccountSubscriptionPayloadKeySpecifier)[]; +export type AccountSubscriptionPayloadFieldPolicy = { + mutation?: FieldPolicy | FieldReadFunction, + node?: FieldPolicy | FieldReadFunction, + updatedFields?: FieldPolicy | FieldReadFunction, + previousValues?: FieldPolicy | FieldReadFunction }; export type AggregateChatRoomInvitationKeySpecifier = ('count' | AggregateChatRoomInvitationKeySpecifier)[]; export type AggregateChatRoomInvitationFieldPolicy = { count?: FieldPolicy | FieldReadFunction }; -export type AggregateFileKeySpecifier = ('count' | AggregateFileKeySpecifier)[]; -export type AggregateFileFieldPolicy = { +export type AggregateCityKeySpecifier = ('count' | AggregateCityKeySpecifier)[]; +export type AggregateCityFieldPolicy = { count?: FieldPolicy | FieldReadFunction }; -export type AggregateImportKeySpecifier = ('count' | AggregateImportKeySpecifier)[]; -export type AggregateImportFieldPolicy = { +export type AggregateCommentTypeKeySpecifier = ('count' | AggregateCommentTypeKeySpecifier)[]; +export type AggregateCommentTypeFieldPolicy = { count?: FieldPolicy | FieldReadFunction }; -export type AggregateInventoryKeySpecifier = ('count' | AggregateInventoryKeySpecifier)[]; -export type AggregateInventoryFieldPolicy = { +export type AggregateFileKeySpecifier = ('count' | AggregateFileKeySpecifier)[]; +export type AggregateFileFieldPolicy = { count?: FieldPolicy | FieldReadFunction }; export type AggregateLetsadsSmsMessageStatusKeySpecifier = ('count' | AggregateLetsadsSmsMessageStatusKeySpecifier)[]; @@ -2819,30 +1465,22 @@ export type AggregateLogedInKeySpecifier = ('count' | AggregateLogedInKeySpecifi export type AggregateLogedInFieldPolicy = { count?: FieldPolicy | FieldReadFunction }; -export type AggregateMessageKeySpecifier = ('count' | AggregateMessageKeySpecifier)[]; -export type AggregateMessageFieldPolicy = { +export type AggregatePhotoKeySpecifier = ('count' | AggregatePhotoKeySpecifier)[]; +export type AggregatePhotoFieldPolicy = { count?: FieldPolicy | FieldReadFunction }; -export type AggregatePlayerKeySpecifier = ('count' | AggregatePlayerKeySpecifier)[]; -export type AggregatePlayerFieldPolicy = { +export type AggregatePlaceBeerKeySpecifier = ('count' | AggregatePlaceBeerKeySpecifier)[]; +export type AggregatePlaceBeerFieldPolicy = { count?: FieldPolicy | FieldReadFunction }; -export type AggregateProjectTaskKeySpecifier = ('count' | AggregateProjectTaskKeySpecifier)[]; -export type AggregateProjectTaskFieldPolicy = { +export type AggregateProjectKeySpecifier = ('count' | AggregateProjectKeySpecifier)[]; +export type AggregateProjectFieldPolicy = { count?: FieldPolicy | FieldReadFunction }; export type AggregateResetPasswordKeySpecifier = ('count' | AggregateResetPasswordKeySpecifier)[]; export type AggregateResetPasswordFieldPolicy = { count?: FieldPolicy | FieldReadFunction }; -export type AggregateServiceCategoryKeySpecifier = ('count' | AggregateServiceCategoryKeySpecifier)[]; -export type AggregateServiceCategoryFieldPolicy = { - count?: FieldPolicy | FieldReadFunction -}; -export type AggregateSettingsKeySpecifier = ('count' | AggregateSettingsKeySpecifier)[]; -export type AggregateSettingsFieldPolicy = { - count?: FieldPolicy | FieldReadFunction -}; export type AggregateSmsMessageKeySpecifier = ('count' | AggregateSmsMessageKeySpecifier)[]; export type AggregateSmsMessageFieldPolicy = { count?: FieldPolicy | FieldReadFunction @@ -2851,56 +1489,73 @@ export type AggregateSmsProviderKeySpecifier = ('count' | AggregateSmsProviderKe export type AggregateSmsProviderFieldPolicy = { count?: FieldPolicy | FieldReadFunction }; -export type AggregateTaskMemberKeySpecifier = ('count' | AggregateTaskMemberKeySpecifier)[]; -export type AggregateTaskMemberFieldPolicy = { +export type AggregateTarifKeySpecifier = ('count' | AggregateTarifKeySpecifier)[]; +export type AggregateTarifFieldPolicy = { + count?: FieldPolicy | FieldReadFunction +}; +export type AggregateTarifRequestKeySpecifier = ('count' | AggregateTarifRequestKeySpecifier)[]; +export type AggregateTarifRequestFieldPolicy = { count?: FieldPolicy | FieldReadFunction }; -export type AggregateTourneyPlayerKeySpecifier = ('count' | AggregateTourneyPlayerKeySpecifier)[]; -export type AggregateTourneyPlayerFieldPolicy = { +export type AggregateTeamKeySpecifier = ('count' | AggregateTeamKeySpecifier)[]; +export type AggregateTeamFieldPolicy = { + count?: FieldPolicy | FieldReadFunction +}; +export type AggregateTransactionKeySpecifier = ('count' | AggregateTransactionKeySpecifier)[]; +export type AggregateTransactionFieldPolicy = { count?: FieldPolicy | FieldReadFunction }; export type AggregateUserGroupKeySpecifier = ('count' | AggregateUserGroupKeySpecifier)[]; export type AggregateUserGroupFieldPolicy = { count?: FieldPolicy | FieldReadFunction }; -export type BlockConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | BlockConnectionKeySpecifier)[]; -export type BlockConnectionFieldPolicy = { - pageInfo?: FieldPolicy | FieldReadFunction, - edges?: FieldPolicy | FieldReadFunction, - aggregate?: FieldPolicy | FieldReadFunction +export type AggregateUserTarifKeySpecifier = ('count' | AggregateUserTarifKeySpecifier)[]; +export type AggregateUserTarifFieldPolicy = { + count?: FieldPolicy | FieldReadFunction }; -export type BlockEdgeKeySpecifier = ('node' | 'cursor' | BlockEdgeKeySpecifier)[]; -export type BlockEdgeFieldPolicy = { - node?: FieldPolicy | FieldReadFunction, - cursor?: FieldPolicy | FieldReadFunction +export type BatchPayloadKeySpecifier = ('count' | BatchPayloadKeySpecifier)[]; +export type BatchPayloadFieldPolicy = { + count?: FieldPolicy | FieldReadFunction }; -export type BlockPreviousValuesKeySpecifier = ('id' | 'representation' | 'type' | 'x' | 'y' | 'z' | BlockPreviousValuesKeySpecifier)[]; -export type BlockPreviousValuesFieldPolicy = { +export type BeerPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'beer_id' | 'name' | 'url_name' | 'description' | 'editor_content' | 'country' | 'image' | 'num_comments' | 'num_photos' | 'manufacturer' | 'region' | 'manufacture_years' | 'container' | 'alcohol' | 'wort_percent' | 'components' | 'bitter' | 'type_id' | 'color' | 'is_request' | 'rating' | 'add_user_id' | 'created_at' | 'gallery' | 'filtered' | 'pasteurized' | BeerPreviousValuesKeySpecifier)[]; +export type BeerPreviousValuesFieldPolicy = { id?: FieldPolicy | FieldReadFunction, - representation?: FieldPolicy | FieldReadFunction, - type?: FieldPolicy | FieldReadFunction, - x?: FieldPolicy | FieldReadFunction, - y?: FieldPolicy | FieldReadFunction, - z?: FieldPolicy | FieldReadFunction + createdAt?: FieldPolicy | FieldReadFunction, + updatedAt?: FieldPolicy | FieldReadFunction, + beer_id?: FieldPolicy | FieldReadFunction, + name?: FieldPolicy | FieldReadFunction, + url_name?: FieldPolicy | FieldReadFunction, + description?: FieldPolicy | FieldReadFunction, + editor_content?: FieldPolicy | FieldReadFunction, + country?: FieldPolicy | FieldReadFunction, + image?: FieldPolicy | FieldReadFunction, + num_comments?: FieldPolicy | FieldReadFunction, + num_photos?: FieldPolicy | FieldReadFunction, + manufacturer?: FieldPolicy | FieldReadFunction, + region?: FieldPolicy | FieldReadFunction, + manufacture_years?: FieldPolicy | FieldReadFunction, + container?: FieldPolicy | FieldReadFunction, + alcohol?: FieldPolicy | FieldReadFunction, + wort_percent?: FieldPolicy | FieldReadFunction, + components?: FieldPolicy | FieldReadFunction, + bitter?: FieldPolicy | FieldReadFunction, + type_id?: FieldPolicy | FieldReadFunction, + color?: FieldPolicy | FieldReadFunction, + is_request?: FieldPolicy | FieldReadFunction, + rating?: FieldPolicy | FieldReadFunction, + add_user_id?: FieldPolicy | FieldReadFunction, + created_at?: FieldPolicy | FieldReadFunction, + gallery?: FieldPolicy | FieldReadFunction, + filtered?: FieldPolicy | FieldReadFunction, + pasteurized?: FieldPolicy | FieldReadFunction }; -export type BlockSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | BlockSubscriptionPayloadKeySpecifier)[]; -export type BlockSubscriptionPayloadFieldPolicy = { +export type BeerSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | BeerSubscriptionPayloadKeySpecifier)[]; +export type BeerSubscriptionPayloadFieldPolicy = { mutation?: FieldPolicy | FieldReadFunction, node?: FieldPolicy | FieldReadFunction, updatedFields?: FieldPolicy | FieldReadFunction, previousValues?: FieldPolicy | FieldReadFunction }; -export type ChatMessageReadedConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | ChatMessageReadedConnectionKeySpecifier)[]; -export type ChatMessageReadedConnectionFieldPolicy = { - pageInfo?: FieldPolicy | FieldReadFunction, - edges?: FieldPolicy | FieldReadFunction, - aggregate?: FieldPolicy | FieldReadFunction -}; -export type ChatMessageReadedEdgeKeySpecifier = ('node' | 'cursor' | ChatMessageReadedEdgeKeySpecifier)[]; -export type ChatMessageReadedEdgeFieldPolicy = { - node?: FieldPolicy | FieldReadFunction, - cursor?: FieldPolicy | FieldReadFunction -}; export type ChatRoomInvitationConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | ChatRoomInvitationConnectionKeySpecifier)[]; export type ChatRoomInvitationConnectionFieldPolicy = { pageInfo?: FieldPolicy | FieldReadFunction, @@ -2925,16 +1580,78 @@ export type ChatRoomInvitationSubscriptionPayloadFieldPolicy = { updatedFields?: FieldPolicy | FieldReadFunction, previousValues?: FieldPolicy | FieldReadFunction }; -export type CodeChallengeCompletionPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'content' | 'success' | CodeChallengeCompletionPreviousValuesKeySpecifier)[]; -export type CodeChallengeCompletionPreviousValuesFieldPolicy = { +export type CityConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | CityConnectionKeySpecifier)[]; +export type CityConnectionFieldPolicy = { + pageInfo?: FieldPolicy | FieldReadFunction, + edges?: FieldPolicy | FieldReadFunction, + aggregate?: FieldPolicy | FieldReadFunction +}; +export type CityEdgeKeySpecifier = ('node' | 'cursor' | CityEdgeKeySpecifier)[]; +export type CityEdgeFieldPolicy = { + node?: FieldPolicy | FieldReadFunction, + cursor?: FieldPolicy | FieldReadFunction +}; +export type CityPreviousValuesKeySpecifier = ('id' | 'city_id' | 'name' | 'alias' | 'lat' | 'lng' | CityPreviousValuesKeySpecifier)[]; +export type CityPreviousValuesFieldPolicy = { + id?: FieldPolicy | FieldReadFunction, + city_id?: FieldPolicy | FieldReadFunction, + name?: FieldPolicy | FieldReadFunction, + alias?: FieldPolicy | FieldReadFunction, + lat?: FieldPolicy | FieldReadFunction, + lng?: FieldPolicy | FieldReadFunction +}; +export type CitySubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | CitySubscriptionPayloadKeySpecifier)[]; +export type CitySubscriptionPayloadFieldPolicy = { + mutation?: FieldPolicy | FieldReadFunction, + node?: FieldPolicy | FieldReadFunction, + updatedFields?: FieldPolicy | FieldReadFunction, + previousValues?: FieldPolicy | FieldReadFunction +}; +export type CommentPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'comment_id' | 'object_id' | 'type_id' | 'editor_content' | 'is_checked' | 'name' | 'parent' | CommentPreviousValuesKeySpecifier)[]; +export type CommentPreviousValuesFieldPolicy = { id?: FieldPolicy | FieldReadFunction, createdAt?: FieldPolicy | FieldReadFunction, updatedAt?: FieldPolicy | FieldReadFunction, - content?: FieldPolicy | FieldReadFunction, - success?: FieldPolicy | FieldReadFunction + comment_id?: FieldPolicy | FieldReadFunction, + object_id?: FieldPolicy | FieldReadFunction, + type_id?: FieldPolicy | FieldReadFunction, + editor_content?: FieldPolicy | FieldReadFunction, + is_checked?: FieldPolicy | FieldReadFunction, + name?: FieldPolicy | FieldReadFunction, + parent?: FieldPolicy | FieldReadFunction +}; +export type CommentSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | CommentSubscriptionPayloadKeySpecifier)[]; +export type CommentSubscriptionPayloadFieldPolicy = { + mutation?: FieldPolicy | FieldReadFunction, + node?: FieldPolicy | FieldReadFunction, + updatedFields?: FieldPolicy | FieldReadFunction, + previousValues?: FieldPolicy | FieldReadFunction +}; +export type CommentTypeKeySpecifier = ('id' | 'name' | 'code' | CommentTypeKeySpecifier)[]; +export type CommentTypeFieldPolicy = { + id?: FieldPolicy | FieldReadFunction, + name?: FieldPolicy | FieldReadFunction, + code?: FieldPolicy | FieldReadFunction +}; +export type CommentTypeConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | CommentTypeConnectionKeySpecifier)[]; +export type CommentTypeConnectionFieldPolicy = { + pageInfo?: FieldPolicy | FieldReadFunction, + edges?: FieldPolicy | FieldReadFunction, + aggregate?: FieldPolicy | FieldReadFunction +}; +export type CommentTypeEdgeKeySpecifier = ('node' | 'cursor' | CommentTypeEdgeKeySpecifier)[]; +export type CommentTypeEdgeFieldPolicy = { + node?: FieldPolicy | FieldReadFunction, + cursor?: FieldPolicy | FieldReadFunction +}; +export type CommentTypePreviousValuesKeySpecifier = ('id' | 'name' | 'code' | CommentTypePreviousValuesKeySpecifier)[]; +export type CommentTypePreviousValuesFieldPolicy = { + id?: FieldPolicy | FieldReadFunction, + name?: FieldPolicy | FieldReadFunction, + code?: FieldPolicy | FieldReadFunction }; -export type CodeChallengeCompletionSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | CodeChallengeCompletionSubscriptionPayloadKeySpecifier)[]; -export type CodeChallengeCompletionSubscriptionPayloadFieldPolicy = { +export type CommentTypeSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | CommentTypeSubscriptionPayloadKeySpecifier)[]; +export type CommentTypeSubscriptionPayloadFieldPolicy = { mutation?: FieldPolicy | FieldReadFunction, node?: FieldPolicy | FieldReadFunction, updatedFields?: FieldPolicy | FieldReadFunction, @@ -3006,21 +1723,6 @@ export type EthContractSourceSubscriptionPayloadFieldPolicy = { updatedFields?: FieldPolicy | FieldReadFunction, previousValues?: FieldPolicy | FieldReadFunction }; -export type EthTransactionPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'chainId' | 'amount' | 'input' | 'index' | 'address' | 'type' | 'v' | 'r' | 's' | EthTransactionPreviousValuesKeySpecifier)[]; -export type EthTransactionPreviousValuesFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - chainId?: FieldPolicy | FieldReadFunction, - amount?: FieldPolicy | FieldReadFunction, - input?: FieldPolicy | FieldReadFunction, - index?: FieldPolicy | FieldReadFunction, - address?: FieldPolicy | FieldReadFunction, - type?: FieldPolicy | FieldReadFunction, - v?: FieldPolicy | FieldReadFunction, - r?: FieldPolicy | FieldReadFunction, - s?: FieldPolicy | FieldReadFunction -}; export type FileConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | FileConnectionKeySpecifier)[]; export type FileConnectionFieldPolicy = { pageInfo?: FieldPolicy | FieldReadFunction, @@ -3032,19 +1734,16 @@ export type FileEdgeFieldPolicy = { node?: FieldPolicy | FieldReadFunction, cursor?: FieldPolicy | FieldReadFunction }; -export type FilePreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'path' | 'name' | 'filename' | 'mimetype' | 'encoding' | 'hash' | 'size' | 'rank' | FilePreviousValuesKeySpecifier)[]; +export type FilePreviousValuesKeySpecifier = ('id' | 'path' | 'name' | 'filename' | 'mimetype' | 'encoding' | 'hash' | 'size' | FilePreviousValuesKeySpecifier)[]; export type FilePreviousValuesFieldPolicy = { id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, path?: FieldPolicy | FieldReadFunction, name?: FieldPolicy | FieldReadFunction, filename?: FieldPolicy | FieldReadFunction, mimetype?: FieldPolicy | FieldReadFunction, encoding?: FieldPolicy | FieldReadFunction, hash?: FieldPolicy | FieldReadFunction, - size?: FieldPolicy | FieldReadFunction, - rank?: FieldPolicy | FieldReadFunction + size?: FieldPolicy | FieldReadFunction }; export type FileSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | FileSubscriptionPayloadKeySpecifier)[]; export type FileSubscriptionPayloadFieldPolicy = { @@ -3053,55 +1752,43 @@ export type FileSubscriptionPayloadFieldPolicy = { updatedFields?: FieldPolicy | FieldReadFunction, previousValues?: FieldPolicy | FieldReadFunction }; -export type ImportConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | ImportConnectionKeySpecifier)[]; -export type ImportConnectionFieldPolicy = { - pageInfo?: FieldPolicy | FieldReadFunction, - edges?: FieldPolicy | FieldReadFunction, - aggregate?: FieldPolicy | FieldReadFunction -}; -export type ImportEdgeKeySpecifier = ('node' | 'cursor' | ImportEdgeKeySpecifier)[]; -export type ImportEdgeFieldPolicy = { - node?: FieldPolicy | FieldReadFunction, - cursor?: FieldPolicy | FieldReadFunction -}; -export type ImportPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'status' | ImportPreviousValuesKeySpecifier)[]; -export type ImportPreviousValuesFieldPolicy = { +export type LetsadsSmsMessageStatusKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'description' | 'errorCode' | 'SmsMessage' | 'Items' | LetsadsSmsMessageStatusKeySpecifier)[]; +export type LetsadsSmsMessageStatusFieldPolicy = { id?: FieldPolicy | FieldReadFunction, createdAt?: FieldPolicy | FieldReadFunction, updatedAt?: FieldPolicy | FieldReadFunction, name?: FieldPolicy | FieldReadFunction, - status?: FieldPolicy | FieldReadFunction -}; -export type ImportSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | ImportSubscriptionPayloadKeySpecifier)[]; -export type ImportSubscriptionPayloadFieldPolicy = { - mutation?: FieldPolicy | FieldReadFunction, - node?: FieldPolicy | FieldReadFunction, - updatedFields?: FieldPolicy | FieldReadFunction, - previousValues?: FieldPolicy | FieldReadFunction -}; -export type InventoryConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | InventoryConnectionKeySpecifier)[]; -export type InventoryConnectionFieldPolicy = { - pageInfo?: FieldPolicy | FieldReadFunction, - edges?: FieldPolicy | FieldReadFunction, - aggregate?: FieldPolicy | FieldReadFunction + description?: FieldPolicy | FieldReadFunction, + errorCode?: FieldPolicy | FieldReadFunction, + SmsMessage?: FieldPolicy | FieldReadFunction, + Items?: FieldPolicy | FieldReadFunction }; -export type InventoryEdgeKeySpecifier = ('node' | 'cursor' | InventoryEdgeKeySpecifier)[]; -export type InventoryEdgeFieldPolicy = { - node?: FieldPolicy | FieldReadFunction, - cursor?: FieldPolicy | FieldReadFunction +export type SmsMessageKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'from' | 'text' | 'recipients' | 'Provider' | 'deletOnSend' | 'CreatedBy' | 'Status' | SmsMessageKeySpecifier)[]; +export type SmsMessageFieldPolicy = { + id?: FieldPolicy | FieldReadFunction, + createdAt?: FieldPolicy | FieldReadFunction, + updatedAt?: FieldPolicy | FieldReadFunction, + from?: FieldPolicy | FieldReadFunction, + text?: FieldPolicy | FieldReadFunction, + recipients?: FieldPolicy | FieldReadFunction, + Provider?: FieldPolicy | FieldReadFunction, + deletOnSend?: FieldPolicy | FieldReadFunction, + CreatedBy?: FieldPolicy | FieldReadFunction, + Status?: FieldPolicy | FieldReadFunction }; -export type InventoryPreviousValuesKeySpecifier = ('id' | 'cursor' | 'data' | InventoryPreviousValuesKeySpecifier)[]; -export type InventoryPreviousValuesFieldPolicy = { +export type SmsProviderKeySpecifier = ('id' | 'name' | 'credentials' | 'CreatedBy' | SmsProviderKeySpecifier)[]; +export type SmsProviderFieldPolicy = { id?: FieldPolicy | FieldReadFunction, - cursor?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction + name?: FieldPolicy | FieldReadFunction, + credentials?: FieldPolicy | FieldReadFunction, + CreatedBy?: FieldPolicy | FieldReadFunction }; -export type InventorySubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | InventorySubscriptionPayloadKeySpecifier)[]; -export type InventorySubscriptionPayloadFieldPolicy = { - mutation?: FieldPolicy | FieldReadFunction, - node?: FieldPolicy | FieldReadFunction, - updatedFields?: FieldPolicy | FieldReadFunction, - previousValues?: FieldPolicy | FieldReadFunction +export type LetsadsSmsMessageStatusItemKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'sms_id' | LetsadsSmsMessageStatusItemKeySpecifier)[]; +export type LetsadsSmsMessageStatusItemFieldPolicy = { + id?: FieldPolicy | FieldReadFunction, + createdAt?: FieldPolicy | FieldReadFunction, + updatedAt?: FieldPolicy | FieldReadFunction, + sms_id?: FieldPolicy | FieldReadFunction }; export type LetsadsSmsMessageStatusConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | LetsadsSmsMessageStatusConnectionKeySpecifier)[]; export type LetsadsSmsMessageStatusConnectionFieldPolicy = { @@ -3155,21 +1842,6 @@ export type LetsadsSmsMessageStatusSubscriptionPayloadFieldPolicy = { updatedFields?: FieldPolicy | FieldReadFunction, previousValues?: FieldPolicy | FieldReadFunction }; -export type LetterKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'email' | 'subject' | 'message' | 'status' | 'rank' | 'deleteOnSend' | 'replyTo' | 'returnTo' | 'User' | LetterKeySpecifier)[]; -export type LetterFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - email?: FieldPolicy | FieldReadFunction, - subject?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - status?: FieldPolicy | FieldReadFunction, - rank?: FieldPolicy | FieldReadFunction, - deleteOnSend?: FieldPolicy | FieldReadFunction, - replyTo?: FieldPolicy | FieldReadFunction, - returnTo?: FieldPolicy | FieldReadFunction, - User?: FieldPolicy | FieldReadFunction -}; export type LetterConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | LetterConnectionKeySpecifier)[]; export type LetterConnectionFieldPolicy = { pageInfo?: FieldPolicy | FieldReadFunction, @@ -3181,11 +1853,9 @@ export type LetterEdgeFieldPolicy = { node?: FieldPolicy | FieldReadFunction, cursor?: FieldPolicy | FieldReadFunction }; -export type LetterPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'email' | 'subject' | 'message' | 'status' | 'rank' | 'deleteOnSend' | 'replyTo' | 'returnTo' | LetterPreviousValuesKeySpecifier)[]; +export type LetterPreviousValuesKeySpecifier = ('id' | 'email' | 'subject' | 'message' | 'status' | 'rank' | 'deleteOnSend' | 'replyTo' | 'returnTo' | LetterPreviousValuesKeySpecifier)[]; export type LetterPreviousValuesFieldPolicy = { id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, email?: FieldPolicy | FieldReadFunction, subject?: FieldPolicy | FieldReadFunction, message?: FieldPolicy | FieldReadFunction, @@ -3202,6 +1872,14 @@ export type LetterSubscriptionPayloadFieldPolicy = { updatedFields?: FieldPolicy | FieldReadFunction, previousValues?: FieldPolicy | FieldReadFunction }; +export type LogKeySpecifier = ('id' | 'level' | 'objectType' | 'message' | 'stack' | LogKeySpecifier)[]; +export type LogFieldPolicy = { + id?: FieldPolicy | FieldReadFunction, + level?: FieldPolicy | FieldReadFunction, + objectType?: FieldPolicy | FieldReadFunction, + message?: FieldPolicy | FieldReadFunction, + stack?: FieldPolicy | FieldReadFunction +}; export type LogConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | LogConnectionKeySpecifier)[]; export type LogConnectionFieldPolicy = { pageInfo?: FieldPolicy | FieldReadFunction, @@ -3224,12 +1902,11 @@ export type LogedInEdgeFieldPolicy = { node?: FieldPolicy | FieldReadFunction, cursor?: FieldPolicy | FieldReadFunction }; -export type LogedInPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'fake' | 'updatedAt' | LogedInPreviousValuesKeySpecifier)[]; +export type LogedInPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'fake' | LogedInPreviousValuesKeySpecifier)[]; export type LogedInPreviousValuesFieldPolicy = { id?: FieldPolicy | FieldReadFunction, createdAt?: FieldPolicy | FieldReadFunction, - fake?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction + fake?: FieldPolicy | FieldReadFunction }; export type LogedInSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | LogedInSubscriptionPayloadKeySpecifier)[]; export type LogedInSubscriptionPayloadFieldPolicy = { @@ -3238,11 +1915,9 @@ export type LogedInSubscriptionPayloadFieldPolicy = { updatedFields?: FieldPolicy | FieldReadFunction, previousValues?: FieldPolicy | FieldReadFunction }; -export type LogPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'level' | 'objectType' | 'message' | 'stack' | LogPreviousValuesKeySpecifier)[]; +export type LogPreviousValuesKeySpecifier = ('id' | 'level' | 'objectType' | 'message' | 'stack' | LogPreviousValuesKeySpecifier)[]; export type LogPreviousValuesFieldPolicy = { id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, level?: FieldPolicy | FieldReadFunction, objectType?: FieldPolicy | FieldReadFunction, message?: FieldPolicy | FieldReadFunction, @@ -3255,26 +1930,14 @@ export type LogSubscriptionPayloadFieldPolicy = { updatedFields?: FieldPolicy | FieldReadFunction, previousValues?: FieldPolicy | FieldReadFunction }; -export type MessageConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | MessageConnectionKeySpecifier)[]; -export type MessageConnectionFieldPolicy = { - pageInfo?: FieldPolicy | FieldReadFunction, - edges?: FieldPolicy | FieldReadFunction, - aggregate?: FieldPolicy | FieldReadFunction -}; -export type MessageEdgeKeySpecifier = ('node' | 'cursor' | MessageEdgeKeySpecifier)[]; -export type MessageEdgeFieldPolicy = { - node?: FieldPolicy | FieldReadFunction, - cursor?: FieldPolicy | FieldReadFunction -}; -export type NotificationTypePreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'code' | 'comment' | 'oldID' | NotificationTypePreviousValuesKeySpecifier)[]; +export type NotificationTypePreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'code' | 'comment' | NotificationTypePreviousValuesKeySpecifier)[]; export type NotificationTypePreviousValuesFieldPolicy = { id?: FieldPolicy | FieldReadFunction, createdAt?: FieldPolicy | FieldReadFunction, updatedAt?: FieldPolicy | FieldReadFunction, name?: FieldPolicy | FieldReadFunction, code?: FieldPolicy | FieldReadFunction, - comment?: FieldPolicy | FieldReadFunction, - oldID?: FieldPolicy | FieldReadFunction + comment?: FieldPolicy | FieldReadFunction }; export type NotificationTypeSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | NotificationTypeSubscriptionPayloadKeySpecifier)[]; export type NotificationTypeSubscriptionPayloadFieldPolicy = { @@ -3283,36 +1946,126 @@ export type NotificationTypeSubscriptionPayloadFieldPolicy = { updatedFields?: FieldPolicy | FieldReadFunction, previousValues?: FieldPolicy | FieldReadFunction }; -export type PlayerConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | PlayerConnectionKeySpecifier)[]; -export type PlayerConnectionFieldPolicy = { +export type PhotoKeySpecifier = ('id' | 'photo_id' | 'user_id' | 'type_id' | 'name' | 'description' | 'num_comments' | 'created_at' | 'updated_at' | 'file_name' | PhotoKeySpecifier)[]; +export type PhotoFieldPolicy = { + id?: FieldPolicy | FieldReadFunction, + photo_id?: FieldPolicy | FieldReadFunction, + user_id?: FieldPolicy | FieldReadFunction, + type_id?: FieldPolicy | FieldReadFunction, + name?: FieldPolicy | FieldReadFunction, + description?: FieldPolicy | FieldReadFunction, + num_comments?: FieldPolicy | FieldReadFunction, + created_at?: FieldPolicy | FieldReadFunction, + updated_at?: FieldPolicy | FieldReadFunction, + file_name?: FieldPolicy | FieldReadFunction +}; +export type PhotoConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | PhotoConnectionKeySpecifier)[]; +export type PhotoConnectionFieldPolicy = { pageInfo?: FieldPolicy | FieldReadFunction, edges?: FieldPolicy | FieldReadFunction, aggregate?: FieldPolicy | FieldReadFunction }; -export type PlayerEdgeKeySpecifier = ('node' | 'cursor' | PlayerEdgeKeySpecifier)[]; -export type PlayerEdgeFieldPolicy = { +export type PhotoEdgeKeySpecifier = ('node' | 'cursor' | PhotoEdgeKeySpecifier)[]; +export type PhotoEdgeFieldPolicy = { node?: FieldPolicy | FieldReadFunction, cursor?: FieldPolicy | FieldReadFunction }; -export type ProjectTaskConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | ProjectTaskConnectionKeySpecifier)[]; -export type ProjectTaskConnectionFieldPolicy = { +export type PhotoPreviousValuesKeySpecifier = ('id' | 'photo_id' | 'user_id' | 'type_id' | 'name' | 'description' | 'num_comments' | 'created_at' | 'updated_at' | 'file_name' | PhotoPreviousValuesKeySpecifier)[]; +export type PhotoPreviousValuesFieldPolicy = { + id?: FieldPolicy | FieldReadFunction, + photo_id?: FieldPolicy | FieldReadFunction, + user_id?: FieldPolicy | FieldReadFunction, + type_id?: FieldPolicy | FieldReadFunction, + name?: FieldPolicy | FieldReadFunction, + description?: FieldPolicy | FieldReadFunction, + num_comments?: FieldPolicy | FieldReadFunction, + created_at?: FieldPolicy | FieldReadFunction, + updated_at?: FieldPolicy | FieldReadFunction, + file_name?: FieldPolicy | FieldReadFunction +}; +export type PhotoSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | PhotoSubscriptionPayloadKeySpecifier)[]; +export type PhotoSubscriptionPayloadFieldPolicy = { + mutation?: FieldPolicy | FieldReadFunction, + node?: FieldPolicy | FieldReadFunction, + updatedFields?: FieldPolicy | FieldReadFunction, + previousValues?: FieldPolicy | FieldReadFunction +}; +export type PlaceBeerConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | PlaceBeerConnectionKeySpecifier)[]; +export type PlaceBeerConnectionFieldPolicy = { pageInfo?: FieldPolicy | FieldReadFunction, edges?: FieldPolicy | FieldReadFunction, aggregate?: FieldPolicy | FieldReadFunction }; -export type ProjectTaskEdgeKeySpecifier = ('node' | 'cursor' | ProjectTaskEdgeKeySpecifier)[]; -export type ProjectTaskEdgeFieldPolicy = { +export type PlaceBeerEdgeKeySpecifier = ('node' | 'cursor' | PlaceBeerEdgeKeySpecifier)[]; +export type PlaceBeerEdgeFieldPolicy = { node?: FieldPolicy | FieldReadFunction, cursor?: FieldPolicy | FieldReadFunction }; -export type ProjectTaskPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | ProjectTaskPreviousValuesKeySpecifier)[]; -export type ProjectTaskPreviousValuesFieldPolicy = { +export type PlaceBeerPreviousValuesKeySpecifier = ('id' | 'price' | PlaceBeerPreviousValuesKeySpecifier)[]; +export type PlaceBeerPreviousValuesFieldPolicy = { + id?: FieldPolicy | FieldReadFunction, + price?: FieldPolicy | FieldReadFunction +}; +export type PlaceBeerSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | PlaceBeerSubscriptionPayloadKeySpecifier)[]; +export type PlaceBeerSubscriptionPayloadFieldPolicy = { + mutation?: FieldPolicy | FieldReadFunction, + node?: FieldPolicy | FieldReadFunction, + updatedFields?: FieldPolicy | FieldReadFunction, + previousValues?: FieldPolicy | FieldReadFunction +}; +export type PlacePreviousValuesKeySpecifier = ('id' | 'updatedAt' | 'createdAt' | 'place_id' | 'name' | 'description' | 'address' | 'lng' | 'lat' | 'website' | 'phone' | 'work_hours' | 'metro' | 'content' | 'schedules' | 'url_name' | 'image' | 'gallery' | 'is_bar' | 'is_shop' | 'is_brewery' | 'active' | 'email' | 'best' | 'is_request' | PlacePreviousValuesKeySpecifier)[]; +export type PlacePreviousValuesFieldPolicy = { id?: FieldPolicy | FieldReadFunction, + updatedAt?: FieldPolicy | FieldReadFunction, createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction + place_id?: FieldPolicy | FieldReadFunction, + name?: FieldPolicy | FieldReadFunction, + description?: FieldPolicy | FieldReadFunction, + address?: FieldPolicy | FieldReadFunction, + lng?: FieldPolicy | FieldReadFunction, + lat?: FieldPolicy | FieldReadFunction, + website?: FieldPolicy | FieldReadFunction, + phone?: FieldPolicy | FieldReadFunction, + work_hours?: FieldPolicy | FieldReadFunction, + metro?: FieldPolicy | FieldReadFunction, + content?: FieldPolicy | FieldReadFunction, + schedules?: FieldPolicy | FieldReadFunction, + url_name?: FieldPolicy | FieldReadFunction, + image?: FieldPolicy | FieldReadFunction, + gallery?: FieldPolicy | FieldReadFunction, + is_bar?: FieldPolicy | FieldReadFunction, + is_shop?: FieldPolicy | FieldReadFunction, + is_brewery?: FieldPolicy | FieldReadFunction, + active?: FieldPolicy | FieldReadFunction, + email?: FieldPolicy | FieldReadFunction, + best?: FieldPolicy | FieldReadFunction, + is_request?: FieldPolicy | FieldReadFunction +}; +export type PlaceSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | PlaceSubscriptionPayloadKeySpecifier)[]; +export type PlaceSubscriptionPayloadFieldPolicy = { + mutation?: FieldPolicy | FieldReadFunction, + node?: FieldPolicy | FieldReadFunction, + updatedFields?: FieldPolicy | FieldReadFunction, + previousValues?: FieldPolicy | FieldReadFunction +}; +export type ProjectConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | ProjectConnectionKeySpecifier)[]; +export type ProjectConnectionFieldPolicy = { + pageInfo?: FieldPolicy | FieldReadFunction, + edges?: FieldPolicy | FieldReadFunction, + aggregate?: FieldPolicy | FieldReadFunction +}; +export type ProjectEdgeKeySpecifier = ('node' | 'cursor' | ProjectEdgeKeySpecifier)[]; +export type ProjectEdgeFieldPolicy = { + node?: FieldPolicy | FieldReadFunction, + cursor?: FieldPolicy | FieldReadFunction +}; +export type ProjectPreviousValuesKeySpecifier = ('id' | 'domain' | ProjectPreviousValuesKeySpecifier)[]; +export type ProjectPreviousValuesFieldPolicy = { + id?: FieldPolicy | FieldReadFunction, + domain?: FieldPolicy | FieldReadFunction }; -export type ProjectTaskSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | ProjectTaskSubscriptionPayloadKeySpecifier)[]; -export type ProjectTaskSubscriptionPayloadFieldPolicy = { +export type ProjectSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | ProjectSubscriptionPayloadKeySpecifier)[]; +export type ProjectSubscriptionPayloadFieldPolicy = { mutation?: FieldPolicy | FieldReadFunction, node?: FieldPolicy | FieldReadFunction, updatedFields?: FieldPolicy | FieldReadFunction, @@ -3345,65 +2098,44 @@ export type ResetPasswordSubscriptionPayloadFieldPolicy = { updatedFields?: FieldPolicy | FieldReadFunction, previousValues?: FieldPolicy | FieldReadFunction }; -export type ResourceTagPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'status' | ResourceTagPreviousValuesKeySpecifier)[]; -export type ResourceTagPreviousValuesFieldPolicy = { - id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - status?: FieldPolicy | FieldReadFunction -}; -export type ResourceTagSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | ResourceTagSubscriptionPayloadKeySpecifier)[]; -export type ResourceTagSubscriptionPayloadFieldPolicy = { - mutation?: FieldPolicy | FieldReadFunction, - node?: FieldPolicy | FieldReadFunction, - updatedFields?: FieldPolicy | FieldReadFunction, - previousValues?: FieldPolicy | FieldReadFunction -}; -export type ServiceCategoryConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | ServiceCategoryConnectionKeySpecifier)[]; -export type ServiceCategoryConnectionFieldPolicy = { - pageInfo?: FieldPolicy | FieldReadFunction, - edges?: FieldPolicy | FieldReadFunction, - aggregate?: FieldPolicy | FieldReadFunction -}; -export type ServiceCategoryEdgeKeySpecifier = ('node' | 'cursor' | ServiceCategoryEdgeKeySpecifier)[]; -export type ServiceCategoryEdgeFieldPolicy = { - node?: FieldPolicy | FieldReadFunction, - cursor?: FieldPolicy | FieldReadFunction -}; -export type ServiceCategoryPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'description' | 'code' | ServiceCategoryPreviousValuesKeySpecifier)[]; -export type ServiceCategoryPreviousValuesFieldPolicy = { +export type ResourcePreviousValuesKeySpecifier = ('id' | 'code' | 'createdAt' | 'updatedAt' | 'type' | 'name' | 'longtitle' | 'content' | 'contentText' | 'published' | 'deleted' | 'hidemenu' | 'searchable' | 'uri' | 'isfolder' | 'rating' | 'positiveVotesCount' | 'negativeVotesCount' | 'neutralVotesCount' | ResourcePreviousValuesKeySpecifier)[]; +export type ResourcePreviousValuesFieldPolicy = { id?: FieldPolicy | FieldReadFunction, + code?: FieldPolicy | FieldReadFunction, createdAt?: FieldPolicy | FieldReadFunction, updatedAt?: FieldPolicy | FieldReadFunction, + type?: FieldPolicy | FieldReadFunction, name?: FieldPolicy | FieldReadFunction, - description?: FieldPolicy | FieldReadFunction, - code?: FieldPolicy | FieldReadFunction + longtitle?: FieldPolicy | FieldReadFunction, + content?: FieldPolicy | FieldReadFunction, + contentText?: FieldPolicy | FieldReadFunction, + published?: FieldPolicy | FieldReadFunction, + deleted?: FieldPolicy | FieldReadFunction, + hidemenu?: FieldPolicy | FieldReadFunction, + searchable?: FieldPolicy | FieldReadFunction, + uri?: FieldPolicy | FieldReadFunction, + isfolder?: FieldPolicy | FieldReadFunction, + rating?: FieldPolicy | FieldReadFunction, + positiveVotesCount?: FieldPolicy | FieldReadFunction, + negativeVotesCount?: FieldPolicy | FieldReadFunction, + neutralVotesCount?: FieldPolicy | FieldReadFunction }; -export type ServiceCategorySubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | ServiceCategorySubscriptionPayloadKeySpecifier)[]; -export type ServiceCategorySubscriptionPayloadFieldPolicy = { +export type ResourceSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | ResourceSubscriptionPayloadKeySpecifier)[]; +export type ResourceSubscriptionPayloadFieldPolicy = { mutation?: FieldPolicy | FieldReadFunction, node?: FieldPolicy | FieldReadFunction, updatedFields?: FieldPolicy | FieldReadFunction, previousValues?: FieldPolicy | FieldReadFunction }; -export type SettingsConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | SettingsConnectionKeySpecifier)[]; -export type SettingsConnectionFieldPolicy = { - pageInfo?: FieldPolicy | FieldReadFunction, - edges?: FieldPolicy | FieldReadFunction, - aggregate?: FieldPolicy | FieldReadFunction -}; -export type SettingsEdgeKeySpecifier = ('node' | 'cursor' | SettingsEdgeKeySpecifier)[]; -export type SettingsEdgeFieldPolicy = { - node?: FieldPolicy | FieldReadFunction, - cursor?: FieldPolicy | FieldReadFunction -}; -export type SettingsPreviousValuesKeySpecifier = ('id' | 'renderDistance' | SettingsPreviousValuesKeySpecifier)[]; -export type SettingsPreviousValuesFieldPolicy = { +export type ResourceTagPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'status' | ResourceTagPreviousValuesKeySpecifier)[]; +export type ResourceTagPreviousValuesFieldPolicy = { id?: FieldPolicy | FieldReadFunction, - renderDistance?: FieldPolicy | FieldReadFunction + createdAt?: FieldPolicy | FieldReadFunction, + updatedAt?: FieldPolicy | FieldReadFunction, + status?: FieldPolicy | FieldReadFunction }; -export type SettingsSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | SettingsSubscriptionPayloadKeySpecifier)[]; -export type SettingsSubscriptionPayloadFieldPolicy = { +export type ResourceTagSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | ResourceTagSubscriptionPayloadKeySpecifier)[]; +export type ResourceTagSubscriptionPayloadFieldPolicy = { mutation?: FieldPolicy | FieldReadFunction, node?: FieldPolicy | FieldReadFunction, updatedFields?: FieldPolicy | FieldReadFunction, @@ -3448,11 +2180,9 @@ export type SmsProviderEdgeFieldPolicy = { node?: FieldPolicy | FieldReadFunction, cursor?: FieldPolicy | FieldReadFunction }; -export type SmsProviderPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'credentials' | SmsProviderPreviousValuesKeySpecifier)[]; +export type SmsProviderPreviousValuesKeySpecifier = ('id' | 'name' | 'credentials' | SmsProviderPreviousValuesKeySpecifier)[]; export type SmsProviderPreviousValuesFieldPolicy = { id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, name?: FieldPolicy | FieldReadFunction, credentials?: FieldPolicy | FieldReadFunction }; @@ -3478,65 +2208,120 @@ export type TagSubscriptionPayloadFieldPolicy = { updatedFields?: FieldPolicy | FieldReadFunction, previousValues?: FieldPolicy | FieldReadFunction }; -export type TaskMemberConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | TaskMemberConnectionKeySpecifier)[]; -export type TaskMemberConnectionFieldPolicy = { +export type TarifConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | TarifConnectionKeySpecifier)[]; +export type TarifConnectionFieldPolicy = { + pageInfo?: FieldPolicy | FieldReadFunction, + edges?: FieldPolicy | FieldReadFunction, + aggregate?: FieldPolicy | FieldReadFunction +}; +export type TarifEdgeKeySpecifier = ('node' | 'cursor' | TarifEdgeKeySpecifier)[]; +export type TarifEdgeFieldPolicy = { + node?: FieldPolicy | FieldReadFunction, + cursor?: FieldPolicy | FieldReadFunction +}; +export type TarifPreviousValuesKeySpecifier = ('id' | 'name' | 'active' | 'maxPriceItems' | 'price' | 'allowIcon' | 'allowBanner' | TarifPreviousValuesKeySpecifier)[]; +export type TarifPreviousValuesFieldPolicy = { + id?: FieldPolicy | FieldReadFunction, + name?: FieldPolicy | FieldReadFunction, + active?: FieldPolicy | FieldReadFunction, + maxPriceItems?: FieldPolicy | FieldReadFunction, + price?: FieldPolicy | FieldReadFunction, + allowIcon?: FieldPolicy | FieldReadFunction, + allowBanner?: FieldPolicy | FieldReadFunction +}; +export type TarifRequestConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | TarifRequestConnectionKeySpecifier)[]; +export type TarifRequestConnectionFieldPolicy = { pageInfo?: FieldPolicy | FieldReadFunction, edges?: FieldPolicy | FieldReadFunction, aggregate?: FieldPolicy | FieldReadFunction }; -export type TaskMemberEdgeKeySpecifier = ('node' | 'cursor' | TaskMemberEdgeKeySpecifier)[]; -export type TaskMemberEdgeFieldPolicy = { +export type TarifRequestEdgeKeySpecifier = ('node' | 'cursor' | TarifRequestEdgeKeySpecifier)[]; +export type TarifRequestEdgeFieldPolicy = { node?: FieldPolicy | FieldReadFunction, cursor?: FieldPolicy | FieldReadFunction }; -export type TaskMemberPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'status' | TaskMemberPreviousValuesKeySpecifier)[]; -export type TaskMemberPreviousValuesFieldPolicy = { +export type TarifRequestPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'executed' | TarifRequestPreviousValuesKeySpecifier)[]; +export type TarifRequestPreviousValuesFieldPolicy = { id?: FieldPolicy | FieldReadFunction, createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, - status?: FieldPolicy | FieldReadFunction + executed?: FieldPolicy | FieldReadFunction +}; +export type TarifRequestSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | TarifRequestSubscriptionPayloadKeySpecifier)[]; +export type TarifRequestSubscriptionPayloadFieldPolicy = { + mutation?: FieldPolicy | FieldReadFunction, + node?: FieldPolicy | FieldReadFunction, + updatedFields?: FieldPolicy | FieldReadFunction, + previousValues?: FieldPolicy | FieldReadFunction +}; +export type TarifSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | TarifSubscriptionPayloadKeySpecifier)[]; +export type TarifSubscriptionPayloadFieldPolicy = { + mutation?: FieldPolicy | FieldReadFunction, + node?: FieldPolicy | FieldReadFunction, + updatedFields?: FieldPolicy | FieldReadFunction, + previousValues?: FieldPolicy | FieldReadFunction +}; +export type TeamConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | TeamConnectionKeySpecifier)[]; +export type TeamConnectionFieldPolicy = { + pageInfo?: FieldPolicy | FieldReadFunction, + edges?: FieldPolicy | FieldReadFunction, + aggregate?: FieldPolicy | FieldReadFunction +}; +export type TeamEdgeKeySpecifier = ('node' | 'cursor' | TeamEdgeKeySpecifier)[]; +export type TeamEdgeFieldPolicy = { + node?: FieldPolicy | FieldReadFunction, + cursor?: FieldPolicy | FieldReadFunction }; -export type TaskMemberSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | TaskMemberSubscriptionPayloadKeySpecifier)[]; -export type TaskMemberSubscriptionPayloadFieldPolicy = { +export type TeamPreviousValuesKeySpecifier = ('id' | TeamPreviousValuesKeySpecifier)[]; +export type TeamPreviousValuesFieldPolicy = { + id?: FieldPolicy | FieldReadFunction +}; +export type TeamSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | TeamSubscriptionPayloadKeySpecifier)[]; +export type TeamSubscriptionPayloadFieldPolicy = { mutation?: FieldPolicy | FieldReadFunction, node?: FieldPolicy | FieldReadFunction, updatedFields?: FieldPolicy | FieldReadFunction, previousValues?: FieldPolicy | FieldReadFunction }; -export type TestPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | 'text' | 'quantity' | 'date' | TestPreviousValuesKeySpecifier)[]; -export type TestPreviousValuesFieldPolicy = { +export type TopicPreviousValuesKeySpecifier = ('id' | 'topic_id' | 'updatedAt' | 'createdAt' | 'created_at' | 'name' | 'editor_content' | 'url_name' | 'type_id' | 'published' | 'description' | TopicPreviousValuesKeySpecifier)[]; +export type TopicPreviousValuesFieldPolicy = { id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, + topic_id?: FieldPolicy | FieldReadFunction, updatedAt?: FieldPolicy | FieldReadFunction, + createdAt?: FieldPolicy | FieldReadFunction, + created_at?: FieldPolicy | FieldReadFunction, name?: FieldPolicy | FieldReadFunction, - text?: FieldPolicy | FieldReadFunction, - quantity?: FieldPolicy | FieldReadFunction, - date?: FieldPolicy | FieldReadFunction + editor_content?: FieldPolicy | FieldReadFunction, + url_name?: FieldPolicy | FieldReadFunction, + type_id?: FieldPolicy | FieldReadFunction, + published?: FieldPolicy | FieldReadFunction, + description?: FieldPolicy | FieldReadFunction }; -export type TestSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | TestSubscriptionPayloadKeySpecifier)[]; -export type TestSubscriptionPayloadFieldPolicy = { +export type TopicSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | TopicSubscriptionPayloadKeySpecifier)[]; +export type TopicSubscriptionPayloadFieldPolicy = { mutation?: FieldPolicy | FieldReadFunction, node?: FieldPolicy | FieldReadFunction, updatedFields?: FieldPolicy | FieldReadFunction, previousValues?: FieldPolicy | FieldReadFunction }; -export type TourneyPlayerConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | TourneyPlayerConnectionKeySpecifier)[]; -export type TourneyPlayerConnectionFieldPolicy = { +export type TransactionConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | TransactionConnectionKeySpecifier)[]; +export type TransactionConnectionFieldPolicy = { pageInfo?: FieldPolicy | FieldReadFunction, edges?: FieldPolicy | FieldReadFunction, aggregate?: FieldPolicy | FieldReadFunction }; -export type TourneyPlayerEdgeKeySpecifier = ('node' | 'cursor' | TourneyPlayerEdgeKeySpecifier)[]; -export type TourneyPlayerEdgeFieldPolicy = { +export type TransactionEdgeKeySpecifier = ('node' | 'cursor' | TransactionEdgeKeySpecifier)[]; +export type TransactionEdgeFieldPolicy = { node?: FieldPolicy | FieldReadFunction, cursor?: FieldPolicy | FieldReadFunction }; -export type TourneyPlayerPreviousValuesKeySpecifier = ('id' | TourneyPlayerPreviousValuesKeySpecifier)[]; -export type TourneyPlayerPreviousValuesFieldPolicy = { - id?: FieldPolicy | FieldReadFunction +export type TransactionPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'amount' | TransactionPreviousValuesKeySpecifier)[]; +export type TransactionPreviousValuesFieldPolicy = { + id?: FieldPolicy | FieldReadFunction, + createdAt?: FieldPolicy | FieldReadFunction, + amount?: FieldPolicy | FieldReadFunction }; -export type TourneyPlayerSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | TourneyPlayerSubscriptionPayloadKeySpecifier)[]; -export type TourneyPlayerSubscriptionPayloadFieldPolicy = { +export type TransactionSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | TransactionSubscriptionPayloadKeySpecifier)[]; +export type TransactionSubscriptionPayloadFieldPolicy = { mutation?: FieldPolicy | FieldReadFunction, node?: FieldPolicy | FieldReadFunction, updatedFields?: FieldPolicy | FieldReadFunction, @@ -3553,11 +2338,9 @@ export type UserGroupEdgeFieldPolicy = { node?: FieldPolicy | FieldReadFunction, cursor?: FieldPolicy | FieldReadFunction }; -export type UserGroupPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'name' | UserGroupPreviousValuesKeySpecifier)[]; +export type UserGroupPreviousValuesKeySpecifier = ('id' | 'name' | UserGroupPreviousValuesKeySpecifier)[]; export type UserGroupPreviousValuesFieldPolicy = { id?: FieldPolicy | FieldReadFunction, - createdAt?: FieldPolicy | FieldReadFunction, - updatedAt?: FieldPolicy | FieldReadFunction, name?: FieldPolicy | FieldReadFunction }; export type UserGroupSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | UserGroupSubscriptionPayloadKeySpecifier)[]; @@ -3567,6 +2350,80 @@ export type UserGroupSubscriptionPayloadFieldPolicy = { updatedFields?: FieldPolicy | FieldReadFunction, previousValues?: FieldPolicy | FieldReadFunction }; +export type UserPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'username' | 'email' | 'phone' | 'showEmail' | 'showPhone' | 'password' | 'fullname' | 'image' | 'address' | 'active' | 'activated' | 'deleted' | 'hidden' | 'user_id' | 'first_name' | 'middle_name' | 'last_name' | 'gender' | 'birth_date' | 'country_id' | 'region_id' | 'city_id' | 'status' | 'timezone' | 'language_id' | 'num_blog_posts' | 'last' | 'created_at' | 'notification' | 'icq' | 'www' | 'contact_email' | 'mobile_phone' | 'home_phone' | 'about' | 'experience' | 'job_title' | 'work_place' | 'ip' | 'confirmation_code' | 'rating' | 'etherwallet' | 'photo' | 'sudo' | UserPreviousValuesKeySpecifier)[]; +export type UserPreviousValuesFieldPolicy = { + id?: FieldPolicy | FieldReadFunction, + createdAt?: FieldPolicy | FieldReadFunction, + updatedAt?: FieldPolicy | FieldReadFunction, + username?: FieldPolicy | FieldReadFunction, + email?: FieldPolicy | FieldReadFunction, + phone?: FieldPolicy | FieldReadFunction, + showEmail?: FieldPolicy | FieldReadFunction, + showPhone?: FieldPolicy | FieldReadFunction, + password?: FieldPolicy | FieldReadFunction, + fullname?: FieldPolicy | FieldReadFunction, + image?: FieldPolicy | FieldReadFunction, + address?: FieldPolicy | FieldReadFunction, + active?: FieldPolicy | FieldReadFunction, + activated?: FieldPolicy | FieldReadFunction, + deleted?: FieldPolicy | FieldReadFunction, + hidden?: FieldPolicy | FieldReadFunction, + user_id?: FieldPolicy | FieldReadFunction, + first_name?: FieldPolicy | FieldReadFunction, + middle_name?: FieldPolicy | FieldReadFunction, + last_name?: FieldPolicy | FieldReadFunction, + gender?: FieldPolicy | FieldReadFunction, + birth_date?: FieldPolicy | FieldReadFunction, + country_id?: FieldPolicy | FieldReadFunction, + region_id?: FieldPolicy | FieldReadFunction, + city_id?: FieldPolicy | FieldReadFunction, + status?: FieldPolicy | FieldReadFunction, + timezone?: FieldPolicy | FieldReadFunction, + language_id?: FieldPolicy | FieldReadFunction, + num_blog_posts?: FieldPolicy | FieldReadFunction, + last?: FieldPolicy | FieldReadFunction, + created_at?: FieldPolicy | FieldReadFunction, + notification?: FieldPolicy | FieldReadFunction, + icq?: FieldPolicy | FieldReadFunction, + www?: FieldPolicy | FieldReadFunction, + contact_email?: FieldPolicy | FieldReadFunction, + mobile_phone?: FieldPolicy | FieldReadFunction, + home_phone?: FieldPolicy | FieldReadFunction, + about?: FieldPolicy | FieldReadFunction, + experience?: FieldPolicy | FieldReadFunction, + job_title?: FieldPolicy | FieldReadFunction, + work_place?: FieldPolicy | FieldReadFunction, + ip?: FieldPolicy | FieldReadFunction, + confirmation_code?: FieldPolicy | FieldReadFunction, + rating?: FieldPolicy | FieldReadFunction, + etherwallet?: FieldPolicy | FieldReadFunction, + photo?: FieldPolicy | FieldReadFunction, + sudo?: FieldPolicy | FieldReadFunction +}; +export type UserTarifConnectionKeySpecifier = ('pageInfo' | 'edges' | 'aggregate' | UserTarifConnectionKeySpecifier)[]; +export type UserTarifConnectionFieldPolicy = { + pageInfo?: FieldPolicy | FieldReadFunction, + edges?: FieldPolicy | FieldReadFunction, + aggregate?: FieldPolicy | FieldReadFunction +}; +export type UserTarifEdgeKeySpecifier = ('node' | 'cursor' | UserTarifEdgeKeySpecifier)[]; +export type UserTarifEdgeFieldPolicy = { + node?: FieldPolicy | FieldReadFunction, + cursor?: FieldPolicy | FieldReadFunction +}; +export type UserTarifPreviousValuesKeySpecifier = ('id' | 'createdAt' | 'dateTill' | UserTarifPreviousValuesKeySpecifier)[]; +export type UserTarifPreviousValuesFieldPolicy = { + id?: FieldPolicy | FieldReadFunction, + createdAt?: FieldPolicy | FieldReadFunction, + dateTill?: FieldPolicy | FieldReadFunction +}; +export type UserTarifSubscriptionPayloadKeySpecifier = ('mutation' | 'node' | 'updatedFields' | 'previousValues' | UserTarifSubscriptionPayloadKeySpecifier)[]; +export type UserTarifSubscriptionPayloadFieldPolicy = { + mutation?: FieldPolicy | FieldReadFunction, + node?: FieldPolicy | FieldReadFunction, + updatedFields?: FieldPolicy | FieldReadFunction, + previousValues?: FieldPolicy | FieldReadFunction +}; export type VotePreviousValuesKeySpecifier = ('id' | 'createdAt' | 'updatedAt' | 'value' | VotePreviousValuesKeySpecifier)[]; export type VotePreviousValuesFieldPolicy = { id?: FieldPolicy | FieldReadFunction, @@ -3581,8 +2438,36 @@ export type VoteSubscriptionPayloadFieldPolicy = { updatedFields?: FieldPolicy | FieldReadFunction, previousValues?: FieldPolicy | FieldReadFunction }; -export type MarketplaceAuthResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | MarketplaceAuthResponseKeySpecifier)[]; -export type MarketplaceAuthResponseFieldPolicy = { +export type FileResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | FileResponseKeySpecifier)[]; +export type FileResponseFieldPolicy = { + success?: FieldPolicy | FieldReadFunction, + message?: FieldPolicy | FieldReadFunction, + errors?: FieldPolicy | FieldReadFunction, + data?: FieldPolicy | FieldReadFunction +}; +export type RouteResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | RouteResponseKeySpecifier)[]; +export type RouteResponseFieldPolicy = { + success?: FieldPolicy | FieldReadFunction, + message?: FieldPolicy | FieldReadFunction, + errors?: FieldPolicy | FieldReadFunction, + data?: FieldPolicy | FieldReadFunction +}; +export type SmsMessageResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | SmsMessageResponseKeySpecifier)[]; +export type SmsMessageResponseFieldPolicy = { + success?: FieldPolicy | FieldReadFunction, + message?: FieldPolicy | FieldReadFunction, + errors?: FieldPolicy | FieldReadFunction, + data?: FieldPolicy | FieldReadFunction +}; +export type SmsProviderResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | SmsProviderResponseKeySpecifier)[]; +export type SmsProviderResponseFieldPolicy = { + success?: FieldPolicy | FieldReadFunction, + message?: FieldPolicy | FieldReadFunction, + errors?: FieldPolicy | FieldReadFunction, + data?: FieldPolicy | FieldReadFunction +}; +export type EthAccountResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | EthAccountResponseKeySpecifier)[]; +export type EthAccountResponseFieldPolicy = { success?: FieldPolicy | FieldReadFunction, message?: FieldPolicy | FieldReadFunction, errors?: FieldPolicy | FieldReadFunction, @@ -3595,6 +2480,13 @@ export type EthBlockResponseFieldPolicy = { errors?: FieldPolicy | FieldReadFunction, data?: FieldPolicy | FieldReadFunction }; +export type EthContractSourceResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | EthContractSourceResponseKeySpecifier)[]; +export type EthContractSourceResponseFieldPolicy = { + success?: FieldPolicy | FieldReadFunction, + message?: FieldPolicy | FieldReadFunction, + errors?: FieldPolicy | FieldReadFunction, + data?: FieldPolicy | FieldReadFunction +}; export type EthPersonalAccountResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | EthPersonalAccountResponseKeySpecifier)[]; export type EthPersonalAccountResponseFieldPolicy = { success?: FieldPolicy | FieldReadFunction, @@ -3602,6 +2494,83 @@ export type EthPersonalAccountResponseFieldPolicy = { errors?: FieldPolicy | FieldReadFunction, data?: FieldPolicy | FieldReadFunction }; +export type EthTransactionResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | EthTransactionResponseKeySpecifier)[]; +export type EthTransactionResponseFieldPolicy = { + success?: FieldPolicy | FieldReadFunction, + message?: FieldPolicy | FieldReadFunction, + errors?: FieldPolicy | FieldReadFunction, + data?: FieldPolicy | FieldReadFunction +}; +export type ResourceResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | ResourceResponseKeySpecifier)[]; +export type ResourceResponseFieldPolicy = { + success?: FieldPolicy | FieldReadFunction, + message?: FieldPolicy | FieldReadFunction, + errors?: FieldPolicy | FieldReadFunction, + data?: FieldPolicy | FieldReadFunction +}; +export type ChatMessageResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | ChatMessageResponseKeySpecifier)[]; +export type ChatMessageResponseFieldPolicy = { + success?: FieldPolicy | FieldReadFunction, + message?: FieldPolicy | FieldReadFunction, + errors?: FieldPolicy | FieldReadFunction, + data?: FieldPolicy | FieldReadFunction +}; +export type ChatMessageReadedResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | ChatMessageReadedResponseKeySpecifier)[]; +export type ChatMessageReadedResponseFieldPolicy = { + success?: FieldPolicy | FieldReadFunction, + message?: FieldPolicy | FieldReadFunction, + errors?: FieldPolicy | FieldReadFunction, + data?: FieldPolicy | FieldReadFunction +}; +export type ChatRoomResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | ChatRoomResponseKeySpecifier)[]; +export type ChatRoomResponseFieldPolicy = { + success?: FieldPolicy | FieldReadFunction, + message?: FieldPolicy | FieldReadFunction, + errors?: FieldPolicy | FieldReadFunction, + data?: FieldPolicy | FieldReadFunction +}; +export type GameResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | GameResponseKeySpecifier)[]; +export type GameResponseFieldPolicy = { + success?: FieldPolicy | FieldReadFunction, + message?: FieldPolicy | FieldReadFunction, + errors?: FieldPolicy | FieldReadFunction, + data?: FieldPolicy | FieldReadFunction +}; +export type GameResultResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | GameResultResponseKeySpecifier)[]; +export type GameResultResponseFieldPolicy = { + success?: FieldPolicy | FieldReadFunction, + message?: FieldPolicy | FieldReadFunction, + errors?: FieldPolicy | FieldReadFunction, + data?: FieldPolicy | FieldReadFunction +}; +export type TournamentResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | TournamentResponseKeySpecifier)[]; +export type TournamentResponseFieldPolicy = { + success?: FieldPolicy | FieldReadFunction, + message?: FieldPolicy | FieldReadFunction, + errors?: FieldPolicy | FieldReadFunction, + data?: FieldPolicy | FieldReadFunction +}; +export type TournamentGroupResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | TournamentGroupResponseKeySpecifier)[]; +export type TournamentGroupResponseFieldPolicy = { + success?: FieldPolicy | FieldReadFunction, + message?: FieldPolicy | FieldReadFunction, + errors?: FieldPolicy | FieldReadFunction, + data?: FieldPolicy | FieldReadFunction +}; +export type TourneyResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | TourneyResponseKeySpecifier)[]; +export type TourneyResponseFieldPolicy = { + success?: FieldPolicy | FieldReadFunction, + message?: FieldPolicy | FieldReadFunction, + errors?: FieldPolicy | FieldReadFunction, + data?: FieldPolicy | FieldReadFunction +}; +export type CallRequestResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | CallRequestResponseKeySpecifier)[]; +export type CallRequestResponseFieldPolicy = { + success?: FieldPolicy | FieldReadFunction, + message?: FieldPolicy | FieldReadFunction, + errors?: FieldPolicy | FieldReadFunction, + data?: FieldPolicy | FieldReadFunction +}; export type IceCandidateKeySpecifier = ('from' | 'to' | 'sdp' | 'callRequestId' | IceCandidateKeySpecifier)[]; export type IceCandidateFieldPolicy = { from?: FieldPolicy | FieldReadFunction, @@ -3609,34 +2578,19 @@ export type IceCandidateFieldPolicy = { sdp?: FieldPolicy | FieldReadFunction, callRequestId?: FieldPolicy | FieldReadFunction }; -export type ServiceCategoryResponseKeySpecifier = ('success' | 'message' | 'errors' | 'data' | ServiceCategoryResponseKeySpecifier)[]; -export type ServiceCategoryResponseFieldPolicy = { - success?: FieldPolicy | FieldReadFunction, - message?: FieldPolicy | FieldReadFunction, - errors?: FieldPolicy | FieldReadFunction, - data?: FieldPolicy | FieldReadFunction -}; export type TypedTypePolicies = TypePolicies & { Query?: Omit & { keyFields?: false | QueryKeySpecifier | (() => undefined | QueryKeySpecifier), fields?: QueryFieldPolicy, }, - Gallery?: Omit & { - keyFields?: false | GalleryKeySpecifier | (() => undefined | GalleryKeySpecifier), - fields?: GalleryFieldPolicy, + User?: Omit & { + keyFields?: false | UserKeySpecifier | (() => undefined | UserKeySpecifier), + fields?: UserFieldPolicy, }, Node?: Omit & { keyFields?: false | NodeKeySpecifier | (() => undefined | NodeKeySpecifier), fields?: NodeFieldPolicy, }, - File?: Omit & { - keyFields?: false | FileKeySpecifier | (() => undefined | FileKeySpecifier), - fields?: FileFieldPolicy, - }, - User?: Omit & { - keyFields?: false | UserKeySpecifier | (() => undefined | UserKeySpecifier), - fields?: UserFieldPolicy, - }, UserGroup?: Omit & { keyFields?: false | UserGroupKeySpecifier | (() => undefined | UserGroupKeySpecifier), fields?: UserGroupFieldPolicy, @@ -3645,10 +2599,18 @@ export type TypedTypePolicies = TypePolicies & { keyFields?: false | LogedInKeySpecifier | (() => undefined | LogedInKeySpecifier), fields?: LogedInFieldPolicy, }, + File?: Omit & { + keyFields?: false | FileKeySpecifier | (() => undefined | FileKeySpecifier), + fields?: FileFieldPolicy, + }, Resource?: Omit & { keyFields?: false | ResourceKeySpecifier | (() => undefined | ResourceKeySpecifier), fields?: ResourceFieldPolicy, }, + Project?: Omit & { + keyFields?: false | ProjectKeySpecifier | (() => undefined | ProjectKeySpecifier), + fields?: ProjectFieldPolicy, + }, Vote?: Omit & { keyFields?: false | VoteKeySpecifier | (() => undefined | VoteKeySpecifier), fields?: VoteFieldPolicy, @@ -3661,41 +2623,21 @@ export type TypedTypePolicies = TypePolicies & { keyFields?: false | TagKeySpecifier | (() => undefined | TagKeySpecifier), fields?: TagFieldPolicy, }, - Service?: Omit & { - keyFields?: false | ServiceKeySpecifier | (() => undefined | ServiceKeySpecifier), - fields?: ServiceFieldPolicy, - }, - ProjectMember?: Omit & { - keyFields?: false | ProjectMemberKeySpecifier | (() => undefined | ProjectMemberKeySpecifier), - fields?: ProjectMemberFieldPolicy, - }, - Project?: Omit & { - keyFields?: false | ProjectKeySpecifier | (() => undefined | ProjectKeySpecifier), - fields?: ProjectFieldPolicy, - }, - Template?: Omit & { - keyFields?: false | TemplateKeySpecifier | (() => undefined | TemplateKeySpecifier), - fields?: TemplateFieldPolicy, - }, - ProjectTask?: Omit & { - keyFields?: false | ProjectTaskKeySpecifier | (() => undefined | ProjectTaskKeySpecifier), - fields?: ProjectTaskFieldPolicy, - }, - Task?: Omit & { - keyFields?: false | TaskKeySpecifier | (() => undefined | TaskKeySpecifier), - fields?: TaskFieldPolicy, + EthContractSource?: Omit & { + keyFields?: false | EthContractSourceKeySpecifier | (() => undefined | EthContractSourceKeySpecifier), + fields?: EthContractSourceFieldPolicy, }, - TaskMember?: Omit & { - keyFields?: false | TaskMemberKeySpecifier | (() => undefined | TaskMemberKeySpecifier), - fields?: TaskMemberFieldPolicy, + EthAccount?: Omit & { + keyFields?: false | EthAccountKeySpecifier | (() => undefined | EthAccountKeySpecifier), + fields?: EthAccountFieldPolicy, }, - Timer?: Omit & { - keyFields?: false | TimerKeySpecifier | (() => undefined | TimerKeySpecifier), - fields?: TimerFieldPolicy, + EthTransaction?: Omit & { + keyFields?: false | EthTransactionKeySpecifier | (() => undefined | EthTransactionKeySpecifier), + fields?: EthTransactionFieldPolicy, }, - TaskReaction?: Omit & { - keyFields?: false | TaskReactionKeySpecifier | (() => undefined | TaskReactionKeySpecifier), - fields?: TaskReactionFieldPolicy, + EthBlock?: Omit & { + keyFields?: false | EthBlockKeySpecifier | (() => undefined | EthBlockKeySpecifier), + fields?: EthBlockFieldPolicy, }, ChatRoom?: Omit & { keyFields?: false | ChatRoomKeySpecifier | (() => undefined | ChatRoomKeySpecifier), @@ -3721,73 +2663,69 @@ export type TypedTypePolicies = TypePolicies & { keyFields?: false | CallRequestKeySpecifier | (() => undefined | CallRequestKeySpecifier), fields?: CallRequestFieldPolicy, }, - CodeChallengeCompletion?: Omit & { - keyFields?: false | CodeChallengeCompletionKeySpecifier | (() => undefined | CodeChallengeCompletionKeySpecifier), - fields?: CodeChallengeCompletionFieldPolicy, - }, - CodeChallenge?: Omit & { - keyFields?: false | CodeChallengeKeySpecifier | (() => undefined | CodeChallengeKeySpecifier), - fields?: CodeChallengeFieldPolicy, + NotificationType?: Omit & { + keyFields?: false | NotificationTypeKeySpecifier | (() => undefined | NotificationTypeKeySpecifier), + fields?: NotificationTypeFieldPolicy, }, - CodeChallengeBlock?: Omit & { - keyFields?: false | CodeChallengeBlockKeySpecifier | (() => undefined | CodeChallengeBlockKeySpecifier), - fields?: CodeChallengeBlockFieldPolicy, + Topic?: Omit & { + keyFields?: false | TopicKeySpecifier | (() => undefined | TopicKeySpecifier), + fields?: TopicFieldPolicy, }, - Team?: Omit & { - keyFields?: false | TeamKeySpecifier | (() => undefined | TeamKeySpecifier), - fields?: TeamFieldPolicy, + Comment?: Omit & { + keyFields?: false | CommentKeySpecifier | (() => undefined | CommentKeySpecifier), + fields?: CommentFieldPolicy, }, - TeamMember?: Omit & { - keyFields?: false | TeamMemberKeySpecifier | (() => undefined | TeamMemberKeySpecifier), - fields?: TeamMemberFieldPolicy, + UserTarif?: Omit & { + keyFields?: false | UserTarifKeySpecifier | (() => undefined | UserTarifKeySpecifier), + fields?: UserTarifFieldPolicy, }, - EthAccount?: Omit & { - keyFields?: false | EthAccountKeySpecifier | (() => undefined | EthAccountKeySpecifier), - fields?: EthAccountFieldPolicy, + Tarif?: Omit & { + keyFields?: false | TarifKeySpecifier | (() => undefined | TarifKeySpecifier), + fields?: TarifFieldPolicy, }, - EthTransaction?: Omit & { - keyFields?: false | EthTransactionKeySpecifier | (() => undefined | EthTransactionKeySpecifier), - fields?: EthTransactionFieldPolicy, + Account?: Omit & { + keyFields?: false | AccountKeySpecifier | (() => undefined | AccountKeySpecifier), + fields?: AccountFieldPolicy, }, - EthBlock?: Omit & { - keyFields?: false | EthBlockKeySpecifier | (() => undefined | EthBlockKeySpecifier), - fields?: EthBlockFieldPolicy, + Transaction?: Omit & { + keyFields?: false | TransactionKeySpecifier | (() => undefined | TransactionKeySpecifier), + fields?: TransactionFieldPolicy, }, - EthContractSource?: Omit & { - keyFields?: false | EthContractSourceKeySpecifier | (() => undefined | EthContractSourceKeySpecifier), - fields?: EthContractSourceFieldPolicy, + Place?: Omit & { + keyFields?: false | PlaceKeySpecifier | (() => undefined | PlaceKeySpecifier), + fields?: PlaceFieldPolicy, }, - ServiceCategory?: Omit & { - keyFields?: false | ServiceCategoryKeySpecifier | (() => undefined | ServiceCategoryKeySpecifier), - fields?: ServiceCategoryFieldPolicy, + PlaceBeer?: Omit & { + keyFields?: false | PlaceBeerKeySpecifier | (() => undefined | PlaceBeerKeySpecifier), + fields?: PlaceBeerFieldPolicy, }, - NotificationType?: Omit & { - keyFields?: false | NotificationTypeKeySpecifier | (() => undefined | NotificationTypeKeySpecifier), - fields?: NotificationTypeFieldPolicy, + Beer?: Omit & { + keyFields?: false | BeerKeySpecifier | (() => undefined | BeerKeySpecifier), + fields?: BeerFieldPolicy, }, - World?: Omit & { - keyFields?: false | WorldKeySpecifier | (() => undefined | WorldKeySpecifier), - fields?: WorldFieldPolicy, + Letter?: Omit & { + keyFields?: false | LetterKeySpecifier | (() => undefined | LetterKeySpecifier), + fields?: LetterFieldPolicy, }, - Block?: Omit & { - keyFields?: false | BlockKeySpecifier | (() => undefined | BlockKeySpecifier), - fields?: BlockFieldPolicy, + MapPlaceConnection?: Omit & { + keyFields?: false | MapPlaceConnectionKeySpecifier | (() => undefined | MapPlaceConnectionKeySpecifier), + fields?: MapPlaceConnectionFieldPolicy, }, - Player?: Omit & { - keyFields?: false | PlayerKeySpecifier | (() => undefined | PlayerKeySpecifier), - fields?: PlayerFieldPolicy, + AggregatePlace?: Omit & { + keyFields?: false | AggregatePlaceKeySpecifier | (() => undefined | AggregatePlaceKeySpecifier), + fields?: AggregatePlaceFieldPolicy, }, - Inventory?: Omit & { - keyFields?: false | InventoryKeySpecifier | (() => undefined | InventoryKeySpecifier), - fields?: InventoryFieldPolicy, + PlaceEdge?: Omit & { + keyFields?: false | PlaceEdgeKeySpecifier | (() => undefined | PlaceEdgeKeySpecifier), + fields?: PlaceEdgeFieldPolicy, }, - Message?: Omit & { - keyFields?: false | MessageKeySpecifier | (() => undefined | MessageKeySpecifier), - fields?: MessageFieldPolicy, + mapGeoObjectsConnection?: Omit & { + keyFields?: false | mapGeoObjectsConnectionKeySpecifier | (() => undefined | mapGeoObjectsConnectionKeySpecifier), + fields?: mapGeoObjectsConnectionFieldPolicy, }, - Settings?: Omit & { - keyFields?: false | SettingsKeySpecifier | (() => undefined | SettingsKeySpecifier), - fields?: SettingsFieldPolicy, + Route?: Omit & { + keyFields?: false | RouteKeySpecifier | (() => undefined | RouteKeySpecifier), + fields?: RouteFieldPolicy, }, Game?: Omit & { keyFields?: false | GameKeySpecifier | (() => undefined | GameKeySpecifier), @@ -3805,77 +2743,93 @@ export type TypedTypePolicies = TypePolicies & { keyFields?: false | TournamentGroupKeySpecifier | (() => undefined | TournamentGroupKeySpecifier), fields?: TournamentGroupFieldPolicy, }, - TourneyPlayer?: Omit & { - keyFields?: false | TourneyPlayerKeySpecifier | (() => undefined | TourneyPlayerKeySpecifier), - fields?: TourneyPlayerFieldPolicy, + Team?: Omit & { + keyFields?: false | TeamKeySpecifier | (() => undefined | TeamKeySpecifier), + fields?: TeamFieldPolicy, }, GameResult?: Omit & { keyFields?: false | GameResultKeySpecifier | (() => undefined | GameResultKeySpecifier), fields?: GameResultFieldPolicy, }, - Position?: Omit & { - keyFields?: false | PositionKeySpecifier | (() => undefined | PositionKeySpecifier), - fields?: PositionFieldPolicy, + City?: Omit & { + keyFields?: false | CityKeySpecifier | (() => undefined | CityKeySpecifier), + fields?: CityFieldPolicy, }, - Route?: Omit & { - keyFields?: false | RouteKeySpecifier | (() => undefined | RouteKeySpecifier), - fields?: RouteFieldPolicy, + RouteConnection?: Omit & { + keyFields?: false | RouteConnectionKeySpecifier | (() => undefined | RouteConnectionKeySpecifier), + fields?: RouteConnectionFieldPolicy, }, - Comment?: Omit & { - keyFields?: false | CommentKeySpecifier | (() => undefined | CommentKeySpecifier), - fields?: CommentFieldPolicy, + PageInfo?: Omit & { + keyFields?: false | PageInfoKeySpecifier | (() => undefined | PageInfoKeySpecifier), + fields?: PageInfoFieldPolicy, + }, + RouteEdge?: Omit & { + keyFields?: false | RouteEdgeKeySpecifier | (() => undefined | RouteEdgeKeySpecifier), + fields?: RouteEdgeFieldPolicy, + }, + AggregateRoute?: Omit & { + keyFields?: false | AggregateRouteKeySpecifier | (() => undefined | AggregateRouteKeySpecifier), + fields?: AggregateRouteFieldPolicy, + }, + EthAccountConnection?: Omit & { + keyFields?: false | EthAccountConnectionKeySpecifier | (() => undefined | EthAccountConnectionKeySpecifier), + fields?: EthAccountConnectionFieldPolicy, + }, + EthAccountEdge?: Omit & { + keyFields?: false | EthAccountEdgeKeySpecifier | (() => undefined | EthAccountEdgeKeySpecifier), + fields?: EthAccountEdgeFieldPolicy, }, - TechnologyLesson?: Omit & { - keyFields?: false | TechnologyLessonKeySpecifier | (() => undefined | TechnologyLessonKeySpecifier), - fields?: TechnologyLessonFieldPolicy, + AggregateEthAccount?: Omit & { + keyFields?: false | AggregateEthAccountKeySpecifier | (() => undefined | AggregateEthAccountKeySpecifier), + fields?: AggregateEthAccountFieldPolicy, }, - Technology?: Omit & { - keyFields?: false | TechnologyKeySpecifier | (() => undefined | TechnologyKeySpecifier), - fields?: TechnologyFieldPolicy, + EthTransactionConnection?: Omit & { + keyFields?: false | EthTransactionConnectionKeySpecifier | (() => undefined | EthTransactionConnectionKeySpecifier), + fields?: EthTransactionConnectionFieldPolicy, }, - UserTechnology?: Omit & { - keyFields?: false | UserTechnologyKeySpecifier | (() => undefined | UserTechnologyKeySpecifier), - fields?: UserTechnologyFieldPolicy, + EthTransactionEdge?: Omit & { + keyFields?: false | EthTransactionEdgeKeySpecifier | (() => undefined | EthTransactionEdgeKeySpecifier), + fields?: EthTransactionEdgeFieldPolicy, }, - TechnologyLessonUser?: Omit & { - keyFields?: false | TechnologyLessonUserKeySpecifier | (() => undefined | TechnologyLessonUserKeySpecifier), - fields?: TechnologyLessonUserFieldPolicy, + AggregateEthTransaction?: Omit & { + keyFields?: false | AggregateEthTransactionKeySpecifier | (() => undefined | AggregateEthTransactionKeySpecifier), + fields?: AggregateEthTransactionFieldPolicy, }, - Career?: Omit & { - keyFields?: false | CareerKeySpecifier | (() => undefined | CareerKeySpecifier), - fields?: CareerFieldPolicy, + ResourceConnection?: Omit & { + keyFields?: false | ResourceConnectionKeySpecifier | (() => undefined | ResourceConnectionKeySpecifier), + fields?: ResourceConnectionFieldPolicy, }, - Test?: Omit & { - keyFields?: false | TestKeySpecifier | (() => undefined | TestKeySpecifier), - fields?: TestFieldPolicy, + ResourceEdge?: Omit & { + keyFields?: false | ResourceEdgeKeySpecifier | (() => undefined | ResourceEdgeKeySpecifier), + fields?: ResourceEdgeFieldPolicy, }, - GalleryConnection?: Omit & { - keyFields?: false | GalleryConnectionKeySpecifier | (() => undefined | GalleryConnectionKeySpecifier), - fields?: GalleryConnectionFieldPolicy, + AggregateResource?: Omit & { + keyFields?: false | AggregateResourceKeySpecifier | (() => undefined | AggregateResourceKeySpecifier), + fields?: AggregateResourceFieldPolicy, }, - PageInfo?: Omit & { - keyFields?: false | PageInfoKeySpecifier | (() => undefined | PageInfoKeySpecifier), - fields?: PageInfoFieldPolicy, + ChatMessageReadedConnection?: Omit & { + keyFields?: false | ChatMessageReadedConnectionKeySpecifier | (() => undefined | ChatMessageReadedConnectionKeySpecifier), + fields?: ChatMessageReadedConnectionFieldPolicy, }, - GalleryEdge?: Omit & { - keyFields?: false | GalleryEdgeKeySpecifier | (() => undefined | GalleryEdgeKeySpecifier), - fields?: GalleryEdgeFieldPolicy, + ChatMessageReadedEdge?: Omit & { + keyFields?: false | ChatMessageReadedEdgeKeySpecifier | (() => undefined | ChatMessageReadedEdgeKeySpecifier), + fields?: ChatMessageReadedEdgeFieldPolicy, }, - AggregateGallery?: Omit & { - keyFields?: false | AggregateGalleryKeySpecifier | (() => undefined | AggregateGalleryKeySpecifier), - fields?: AggregateGalleryFieldPolicy, + AggregateChatMessageReaded?: Omit & { + keyFields?: false | AggregateChatMessageReadedKeySpecifier | (() => undefined | AggregateChatMessageReadedKeySpecifier), + fields?: AggregateChatMessageReadedFieldPolicy, }, - WorldConnection?: Omit & { - keyFields?: false | WorldConnectionKeySpecifier | (() => undefined | WorldConnectionKeySpecifier), - fields?: WorldConnectionFieldPolicy, + ChatRoomConnection?: Omit & { + keyFields?: false | ChatRoomConnectionKeySpecifier | (() => undefined | ChatRoomConnectionKeySpecifier), + fields?: ChatRoomConnectionFieldPolicy, }, - WorldEdge?: Omit & { - keyFields?: false | WorldEdgeKeySpecifier | (() => undefined | WorldEdgeKeySpecifier), - fields?: WorldEdgeFieldPolicy, + ChatRoomEdge?: Omit & { + keyFields?: false | ChatRoomEdgeKeySpecifier | (() => undefined | ChatRoomEdgeKeySpecifier), + fields?: ChatRoomEdgeFieldPolicy, }, - AggregateWorld?: Omit & { - keyFields?: false | AggregateWorldKeySpecifier | (() => undefined | AggregateWorldKeySpecifier), - fields?: AggregateWorldFieldPolicy, + AggregateChatRoom?: Omit & { + keyFields?: false | AggregateChatRoomKeySpecifier | (() => undefined | AggregateChatRoomKeySpecifier), + fields?: AggregateChatRoomFieldPolicy, }, NoticeConnection?: Omit & { keyFields?: false | NoticeConnectionKeySpecifier | (() => undefined | NoticeConnectionKeySpecifier), @@ -3925,30 +2879,6 @@ export type TypedTypePolicies = TypePolicies & { keyFields?: false | AggregateTagKeySpecifier | (() => undefined | AggregateTagKeySpecifier), fields?: AggregateTagFieldPolicy, }, - VoteConnection?: Omit & { - keyFields?: false | VoteConnectionKeySpecifier | (() => undefined | VoteConnectionKeySpecifier), - fields?: VoteConnectionFieldPolicy, - }, - VoteEdge?: Omit & { - keyFields?: false | VoteEdgeKeySpecifier | (() => undefined | VoteEdgeKeySpecifier), - fields?: VoteEdgeFieldPolicy, - }, - AggregateVote?: Omit & { - keyFields?: false | AggregateVoteKeySpecifier | (() => undefined | AggregateVoteKeySpecifier), - fields?: AggregateVoteFieldPolicy, - }, - ChatRoomConnection?: Omit & { - keyFields?: false | ChatRoomConnectionKeySpecifier | (() => undefined | ChatRoomConnectionKeySpecifier), - fields?: ChatRoomConnectionFieldPolicy, - }, - ChatRoomEdge?: Omit & { - keyFields?: false | ChatRoomEdgeKeySpecifier | (() => undefined | ChatRoomEdgeKeySpecifier), - fields?: ChatRoomEdgeFieldPolicy, - }, - AggregateChatRoom?: Omit & { - keyFields?: false | AggregateChatRoomKeySpecifier | (() => undefined | AggregateChatRoomKeySpecifier), - fields?: AggregateChatRoomFieldPolicy, - }, GameConnection?: Omit & { keyFields?: false | GameConnectionKeySpecifier | (() => undefined | GameConnectionKeySpecifier), fields?: GameConnectionFieldPolicy, @@ -4009,41 +2939,17 @@ export type TypedTypePolicies = TypePolicies & { keyFields?: false | AggregateTourneyKeySpecifier | (() => undefined | AggregateTourneyKeySpecifier), fields?: AggregateTourneyFieldPolicy, }, - EthAccountConnection?: Omit & { - keyFields?: false | EthAccountConnectionKeySpecifier | (() => undefined | EthAccountConnectionKeySpecifier), - fields?: EthAccountConnectionFieldPolicy, - }, - EthAccountEdge?: Omit & { - keyFields?: false | EthAccountEdgeKeySpecifier | (() => undefined | EthAccountEdgeKeySpecifier), - fields?: EthAccountEdgeFieldPolicy, - }, - AggregateEthAccount?: Omit & { - keyFields?: false | AggregateEthAccountKeySpecifier | (() => undefined | AggregateEthAccountKeySpecifier), - fields?: AggregateEthAccountFieldPolicy, - }, - EthContractSourceConnection?: Omit & { - keyFields?: false | EthContractSourceConnectionKeySpecifier | (() => undefined | EthContractSourceConnectionKeySpecifier), - fields?: EthContractSourceConnectionFieldPolicy, - }, - EthContractSourceEdge?: Omit & { - keyFields?: false | EthContractSourceEdgeKeySpecifier | (() => undefined | EthContractSourceEdgeKeySpecifier), - fields?: EthContractSourceEdgeFieldPolicy, - }, - AggregateEthContractSource?: Omit & { - keyFields?: false | AggregateEthContractSourceKeySpecifier | (() => undefined | AggregateEthContractSourceKeySpecifier), - fields?: AggregateEthContractSourceFieldPolicy, - }, - EthTransactionConnection?: Omit & { - keyFields?: false | EthTransactionConnectionKeySpecifier | (() => undefined | EthTransactionConnectionKeySpecifier), - fields?: EthTransactionConnectionFieldPolicy, + VoteConnection?: Omit & { + keyFields?: false | VoteConnectionKeySpecifier | (() => undefined | VoteConnectionKeySpecifier), + fields?: VoteConnectionFieldPolicy, }, - EthTransactionEdge?: Omit & { - keyFields?: false | EthTransactionEdgeKeySpecifier | (() => undefined | EthTransactionEdgeKeySpecifier), - fields?: EthTransactionEdgeFieldPolicy, + VoteEdge?: Omit & { + keyFields?: false | VoteEdgeKeySpecifier | (() => undefined | VoteEdgeKeySpecifier), + fields?: VoteEdgeFieldPolicy, }, - AggregateEthTransaction?: Omit & { - keyFields?: false | AggregateEthTransactionKeySpecifier | (() => undefined | AggregateEthTransactionKeySpecifier), - fields?: AggregateEthTransactionFieldPolicy, + AggregateVote?: Omit & { + keyFields?: false | AggregateVoteKeySpecifier | (() => undefined | AggregateVoteKeySpecifier), + fields?: AggregateVoteFieldPolicy, }, CallRequestConnection?: Omit & { keyFields?: false | CallRequestConnectionKeySpecifier | (() => undefined | CallRequestConnectionKeySpecifier), @@ -4057,137 +2963,17 @@ export type TypedTypePolicies = TypePolicies & { keyFields?: false | AggregateCallRequestKeySpecifier | (() => undefined | AggregateCallRequestKeySpecifier), fields?: AggregateCallRequestFieldPolicy, }, - PositionConnection?: Omit & { - keyFields?: false | PositionConnectionKeySpecifier | (() => undefined | PositionConnectionKeySpecifier), - fields?: PositionConnectionFieldPolicy, - }, - PositionEdge?: Omit & { - keyFields?: false | PositionEdgeKeySpecifier | (() => undefined | PositionEdgeKeySpecifier), - fields?: PositionEdgeFieldPolicy, - }, - AggregatePosition?: Omit & { - keyFields?: false | AggregatePositionKeySpecifier | (() => undefined | AggregatePositionKeySpecifier), - fields?: AggregatePositionFieldPolicy, - }, - ProjectMemberConnection?: Omit & { - keyFields?: false | ProjectMemberConnectionKeySpecifier | (() => undefined | ProjectMemberConnectionKeySpecifier), - fields?: ProjectMemberConnectionFieldPolicy, - }, - ProjectMemberEdge?: Omit & { - keyFields?: false | ProjectMemberEdgeKeySpecifier | (() => undefined | ProjectMemberEdgeKeySpecifier), - fields?: ProjectMemberEdgeFieldPolicy, - }, - AggregateProjectMember?: Omit & { - keyFields?: false | AggregateProjectMemberKeySpecifier | (() => undefined | AggregateProjectMemberKeySpecifier), - fields?: AggregateProjectMemberFieldPolicy, - }, - ServiceConnection?: Omit & { - keyFields?: false | ServiceConnectionKeySpecifier | (() => undefined | ServiceConnectionKeySpecifier), - fields?: ServiceConnectionFieldPolicy, - }, - ServiceEdge?: Omit & { - keyFields?: false | ServiceEdgeKeySpecifier | (() => undefined | ServiceEdgeKeySpecifier), - fields?: ServiceEdgeFieldPolicy, - }, - AggregateService?: Omit & { - keyFields?: false | AggregateServiceKeySpecifier | (() => undefined | AggregateServiceKeySpecifier), - fields?: AggregateServiceFieldPolicy, - }, - TaskConnection?: Omit & { - keyFields?: false | TaskConnectionKeySpecifier | (() => undefined | TaskConnectionKeySpecifier), - fields?: TaskConnectionFieldPolicy, - }, - TaskEdge?: Omit & { - keyFields?: false | TaskEdgeKeySpecifier | (() => undefined | TaskEdgeKeySpecifier), - fields?: TaskEdgeFieldPolicy, - }, - AggregateTask?: Omit & { - keyFields?: false | AggregateTaskKeySpecifier | (() => undefined | AggregateTaskKeySpecifier), - fields?: AggregateTaskFieldPolicy, - }, - TaskReactionConnection?: Omit & { - keyFields?: false | TaskReactionConnectionKeySpecifier | (() => undefined | TaskReactionConnectionKeySpecifier), - fields?: TaskReactionConnectionFieldPolicy, - }, - TaskReactionEdge?: Omit & { - keyFields?: false | TaskReactionEdgeKeySpecifier | (() => undefined | TaskReactionEdgeKeySpecifier), - fields?: TaskReactionEdgeFieldPolicy, - }, - AggregateTaskReaction?: Omit & { - keyFields?: false | AggregateTaskReactionKeySpecifier | (() => undefined | AggregateTaskReactionKeySpecifier), - fields?: AggregateTaskReactionFieldPolicy, - }, - TeamMemberConnection?: Omit & { - keyFields?: false | TeamMemberConnectionKeySpecifier | (() => undefined | TeamMemberConnectionKeySpecifier), - fields?: TeamMemberConnectionFieldPolicy, + BeerConnection?: Omit & { + keyFields?: false | BeerConnectionKeySpecifier | (() => undefined | BeerConnectionKeySpecifier), + fields?: BeerConnectionFieldPolicy, }, - TeamMemberEdge?: Omit & { - keyFields?: false | TeamMemberEdgeKeySpecifier | (() => undefined | TeamMemberEdgeKeySpecifier), - fields?: TeamMemberEdgeFieldPolicy, + BeerEdge?: Omit & { + keyFields?: false | BeerEdgeKeySpecifier | (() => undefined | BeerEdgeKeySpecifier), + fields?: BeerEdgeFieldPolicy, }, - AggregateTeamMember?: Omit & { - keyFields?: false | AggregateTeamMemberKeySpecifier | (() => undefined | AggregateTeamMemberKeySpecifier), - fields?: AggregateTeamMemberFieldPolicy, - }, - TimerConnection?: Omit & { - keyFields?: false | TimerConnectionKeySpecifier | (() => undefined | TimerConnectionKeySpecifier), - fields?: TimerConnectionFieldPolicy, - }, - TimerEdge?: Omit & { - keyFields?: false | TimerEdgeKeySpecifier | (() => undefined | TimerEdgeKeySpecifier), - fields?: TimerEdgeFieldPolicy, - }, - AggregateTimer?: Omit & { - keyFields?: false | AggregateTimerKeySpecifier | (() => undefined | AggregateTimerKeySpecifier), - fields?: AggregateTimerFieldPolicy, - }, - RouteConnection?: Omit & { - keyFields?: false | RouteConnectionKeySpecifier | (() => undefined | RouteConnectionKeySpecifier), - fields?: RouteConnectionFieldPolicy, - }, - RouteEdge?: Omit & { - keyFields?: false | RouteEdgeKeySpecifier | (() => undefined | RouteEdgeKeySpecifier), - fields?: RouteEdgeFieldPolicy, - }, - AggregateRoute?: Omit & { - keyFields?: false | AggregateRouteKeySpecifier | (() => undefined | AggregateRouteKeySpecifier), - fields?: AggregateRouteFieldPolicy, - }, - CodeChallengeConnection?: Omit & { - keyFields?: false | CodeChallengeConnectionKeySpecifier | (() => undefined | CodeChallengeConnectionKeySpecifier), - fields?: CodeChallengeConnectionFieldPolicy, - }, - CodeChallengeEdge?: Omit & { - keyFields?: false | CodeChallengeEdgeKeySpecifier | (() => undefined | CodeChallengeEdgeKeySpecifier), - fields?: CodeChallengeEdgeFieldPolicy, - }, - AggregateCodeChallenge?: Omit & { - keyFields?: false | AggregateCodeChallengeKeySpecifier | (() => undefined | AggregateCodeChallengeKeySpecifier), - fields?: AggregateCodeChallengeFieldPolicy, - }, - CodeChallengeBlockConnection?: Omit & { - keyFields?: false | CodeChallengeBlockConnectionKeySpecifier | (() => undefined | CodeChallengeBlockConnectionKeySpecifier), - fields?: CodeChallengeBlockConnectionFieldPolicy, - }, - CodeChallengeBlockEdge?: Omit & { - keyFields?: false | CodeChallengeBlockEdgeKeySpecifier | (() => undefined | CodeChallengeBlockEdgeKeySpecifier), - fields?: CodeChallengeBlockEdgeFieldPolicy, - }, - AggregateCodeChallengeBlock?: Omit & { - keyFields?: false | AggregateCodeChallengeBlockKeySpecifier | (() => undefined | AggregateCodeChallengeBlockKeySpecifier), - fields?: AggregateCodeChallengeBlockFieldPolicy, - }, - CodeChallengeCompletionConnection?: Omit & { - keyFields?: false | CodeChallengeCompletionConnectionKeySpecifier | (() => undefined | CodeChallengeCompletionConnectionKeySpecifier), - fields?: CodeChallengeCompletionConnectionFieldPolicy, - }, - CodeChallengeCompletionEdge?: Omit & { - keyFields?: false | CodeChallengeCompletionEdgeKeySpecifier | (() => undefined | CodeChallengeCompletionEdgeKeySpecifier), - fields?: CodeChallengeCompletionEdgeFieldPolicy, - }, - AggregateCodeChallengeCompletion?: Omit & { - keyFields?: false | AggregateCodeChallengeCompletionKeySpecifier | (() => undefined | AggregateCodeChallengeCompletionKeySpecifier), - fields?: AggregateCodeChallengeCompletionFieldPolicy, + AggregateBeer?: Omit & { + keyFields?: false | AggregateBeerKeySpecifier | (() => undefined | AggregateBeerKeySpecifier), + fields?: AggregateBeerFieldPolicy, }, CommentConnection?: Omit & { keyFields?: false | CommentConnectionKeySpecifier | (() => undefined | CommentConnectionKeySpecifier), @@ -4201,77 +2987,21 @@ export type TypedTypePolicies = TypePolicies & { keyFields?: false | AggregateCommentKeySpecifier | (() => undefined | AggregateCommentKeySpecifier), fields?: AggregateCommentFieldPolicy, }, - TechnologyLessonConnection?: Omit & { - keyFields?: false | TechnologyLessonConnectionKeySpecifier | (() => undefined | TechnologyLessonConnectionKeySpecifier), - fields?: TechnologyLessonConnectionFieldPolicy, - }, - TechnologyLessonEdge?: Omit & { - keyFields?: false | TechnologyLessonEdgeKeySpecifier | (() => undefined | TechnologyLessonEdgeKeySpecifier), - fields?: TechnologyLessonEdgeFieldPolicy, - }, - AggregateTechnologyLesson?: Omit & { - keyFields?: false | AggregateTechnologyLessonKeySpecifier | (() => undefined | AggregateTechnologyLessonKeySpecifier), - fields?: AggregateTechnologyLessonFieldPolicy, - }, - CareerConnection?: Omit & { - keyFields?: false | CareerConnectionKeySpecifier | (() => undefined | CareerConnectionKeySpecifier), - fields?: CareerConnectionFieldPolicy, - }, - CareerEdge?: Omit & { - keyFields?: false | CareerEdgeKeySpecifier | (() => undefined | CareerEdgeKeySpecifier), - fields?: CareerEdgeFieldPolicy, - }, - AggregateCareer?: Omit & { - keyFields?: false | AggregateCareerKeySpecifier | (() => undefined | AggregateCareerKeySpecifier), - fields?: AggregateCareerFieldPolicy, - }, - TechnologyLessonUserConnection?: Omit & { - keyFields?: false | TechnologyLessonUserConnectionKeySpecifier | (() => undefined | TechnologyLessonUserConnectionKeySpecifier), - fields?: TechnologyLessonUserConnectionFieldPolicy, - }, - TechnologyLessonUserEdge?: Omit & { - keyFields?: false | TechnologyLessonUserEdgeKeySpecifier | (() => undefined | TechnologyLessonUserEdgeKeySpecifier), - fields?: TechnologyLessonUserEdgeFieldPolicy, - }, - AggregateTechnologyLessonUser?: Omit & { - keyFields?: false | AggregateTechnologyLessonUserKeySpecifier | (() => undefined | AggregateTechnologyLessonUserKeySpecifier), - fields?: AggregateTechnologyLessonUserFieldPolicy, + PlaceConnection?: Omit & { + keyFields?: false | PlaceConnectionKeySpecifier | (() => undefined | PlaceConnectionKeySpecifier), + fields?: PlaceConnectionFieldPolicy, }, - UserTechnologyConnection?: Omit & { - keyFields?: false | UserTechnologyConnectionKeySpecifier | (() => undefined | UserTechnologyConnectionKeySpecifier), - fields?: UserTechnologyConnectionFieldPolicy, + TopicConnection?: Omit & { + keyFields?: false | TopicConnectionKeySpecifier | (() => undefined | TopicConnectionKeySpecifier), + fields?: TopicConnectionFieldPolicy, }, - UserTechnologyEdge?: Omit & { - keyFields?: false | UserTechnologyEdgeKeySpecifier | (() => undefined | UserTechnologyEdgeKeySpecifier), - fields?: UserTechnologyEdgeFieldPolicy, + TopicEdge?: Omit & { + keyFields?: false | TopicEdgeKeySpecifier | (() => undefined | TopicEdgeKeySpecifier), + fields?: TopicEdgeFieldPolicy, }, - AggregateUserTechnology?: Omit & { - keyFields?: false | AggregateUserTechnologyKeySpecifier | (() => undefined | AggregateUserTechnologyKeySpecifier), - fields?: AggregateUserTechnologyFieldPolicy, - }, - TestConnection?: Omit & { - keyFields?: false | TestConnectionKeySpecifier | (() => undefined | TestConnectionKeySpecifier), - fields?: TestConnectionFieldPolicy, - }, - TestEdge?: Omit & { - keyFields?: false | TestEdgeKeySpecifier | (() => undefined | TestEdgeKeySpecifier), - fields?: TestEdgeFieldPolicy, - }, - AggregateTest?: Omit & { - keyFields?: false | AggregateTestKeySpecifier | (() => undefined | AggregateTestKeySpecifier), - fields?: AggregateTestFieldPolicy, - }, - TechnologyConnection?: Omit & { - keyFields?: false | TechnologyConnectionKeySpecifier | (() => undefined | TechnologyConnectionKeySpecifier), - fields?: TechnologyConnectionFieldPolicy, - }, - TechnologyEdge?: Omit & { - keyFields?: false | TechnologyEdgeKeySpecifier | (() => undefined | TechnologyEdgeKeySpecifier), - fields?: TechnologyEdgeFieldPolicy, - }, - AggregateTechnology?: Omit & { - keyFields?: false | AggregateTechnologyKeySpecifier | (() => undefined | AggregateTechnologyKeySpecifier), - fields?: AggregateTechnologyFieldPolicy, + AggregateTopic?: Omit & { + keyFields?: false | AggregateTopicKeySpecifier | (() => undefined | AggregateTopicKeySpecifier), + fields?: AggregateTopicFieldPolicy, }, EthBlockConnection?: Omit & { keyFields?: false | EthBlockConnectionKeySpecifier | (() => undefined | EthBlockConnectionKeySpecifier), @@ -4285,53 +3015,29 @@ export type TypedTypePolicies = TypePolicies & { keyFields?: false | AggregateEthBlockKeySpecifier | (() => undefined | AggregateEthBlockKeySpecifier), fields?: AggregateEthBlockFieldPolicy, }, - TeamConnection?: Omit & { - keyFields?: false | TeamConnectionKeySpecifier | (() => undefined | TeamConnectionKeySpecifier), - fields?: TeamConnectionFieldPolicy, - }, - TeamEdge?: Omit & { - keyFields?: false | TeamEdgeKeySpecifier | (() => undefined | TeamEdgeKeySpecifier), - fields?: TeamEdgeFieldPolicy, - }, - AggregateTeam?: Omit & { - keyFields?: false | AggregateTeamKeySpecifier | (() => undefined | AggregateTeamKeySpecifier), - fields?: AggregateTeamFieldPolicy, - }, - ProjectConnection?: Omit & { - keyFields?: false | ProjectConnectionKeySpecifier | (() => undefined | ProjectConnectionKeySpecifier), - fields?: ProjectConnectionFieldPolicy, - }, - ProjectEdge?: Omit & { - keyFields?: false | ProjectEdgeKeySpecifier | (() => undefined | ProjectEdgeKeySpecifier), - fields?: ProjectEdgeFieldPolicy, - }, - AggregateProject?: Omit & { - keyFields?: false | AggregateProjectKeySpecifier | (() => undefined | AggregateProjectKeySpecifier), - fields?: AggregateProjectFieldPolicy, - }, - TemplateConnection?: Omit & { - keyFields?: false | TemplateConnectionKeySpecifier | (() => undefined | TemplateConnectionKeySpecifier), - fields?: TemplateConnectionFieldPolicy, + EthContractSourceConnection?: Omit & { + keyFields?: false | EthContractSourceConnectionKeySpecifier | (() => undefined | EthContractSourceConnectionKeySpecifier), + fields?: EthContractSourceConnectionFieldPolicy, }, - TemplateEdge?: Omit & { - keyFields?: false | TemplateEdgeKeySpecifier | (() => undefined | TemplateEdgeKeySpecifier), - fields?: TemplateEdgeFieldPolicy, + EthContractSourceEdge?: Omit & { + keyFields?: false | EthContractSourceEdgeKeySpecifier | (() => undefined | EthContractSourceEdgeKeySpecifier), + fields?: EthContractSourceEdgeFieldPolicy, }, - AggregateTemplate?: Omit & { - keyFields?: false | AggregateTemplateKeySpecifier | (() => undefined | AggregateTemplateKeySpecifier), - fields?: AggregateTemplateFieldPolicy, + AggregateEthContractSource?: Omit & { + keyFields?: false | AggregateEthContractSourceKeySpecifier | (() => undefined | AggregateEthContractSourceKeySpecifier), + fields?: AggregateEthContractSourceFieldPolicy, }, - ResourceConnection?: Omit & { - keyFields?: false | ResourceConnectionKeySpecifier | (() => undefined | ResourceConnectionKeySpecifier), - fields?: ResourceConnectionFieldPolicy, + UserConnection?: Omit & { + keyFields?: false | UserConnectionKeySpecifier | (() => undefined | UserConnectionKeySpecifier), + fields?: UserConnectionFieldPolicy, }, - ResourceEdge?: Omit & { - keyFields?: false | ResourceEdgeKeySpecifier | (() => undefined | ResourceEdgeKeySpecifier), - fields?: ResourceEdgeFieldPolicy, + UserEdge?: Omit & { + keyFields?: false | UserEdgeKeySpecifier | (() => undefined | UserEdgeKeySpecifier), + fields?: UserEdgeFieldPolicy, }, - AggregateResource?: Omit & { - keyFields?: false | AggregateResourceKeySpecifier | (() => undefined | AggregateResourceKeySpecifier), - fields?: AggregateResourceFieldPolicy, + AggregateUser?: Omit & { + keyFields?: false | AggregateUserKeySpecifier | (() => undefined | AggregateUserKeySpecifier), + fields?: AggregateUserFieldPolicy, }, ChatMessageConnection?: Omit & { keyFields?: false | ChatMessageConnectionKeySpecifier | (() => undefined | ChatMessageConnectionKeySpecifier), @@ -4345,18 +3051,6 @@ export type TypedTypePolicies = TypePolicies & { keyFields?: false | AggregateChatMessageKeySpecifier | (() => undefined | AggregateChatMessageKeySpecifier), fields?: AggregateChatMessageFieldPolicy, }, - UserConnection?: Omit & { - keyFields?: false | UserConnectionKeySpecifier | (() => undefined | UserConnectionKeySpecifier), - fields?: UserConnectionFieldPolicy, - }, - UserEdge?: Omit & { - keyFields?: false | UserEdgeKeySpecifier | (() => undefined | UserEdgeKeySpecifier), - fields?: UserEdgeFieldPolicy, - }, - AggregateUser?: Omit & { - keyFields?: false | AggregateUserKeySpecifier | (() => undefined | AggregateUserKeySpecifier), - fields?: AggregateUserFieldPolicy, - }, ethNet?: Omit & { keyFields?: false | ethNetKeySpecifier | (() => undefined | ethNetKeySpecifier), fields?: ethNetFieldPolicy, @@ -4373,89 +3067,41 @@ export type TypedTypePolicies = TypePolicies & { keyFields?: false | MutationKeySpecifier | (() => undefined | MutationKeySpecifier), fields?: MutationFieldPolicy, }, - ResourceResponse?: Omit & { - keyFields?: false | ResourceResponseKeySpecifier | (() => undefined | ResourceResponseKeySpecifier), - fields?: ResourceResponseFieldPolicy, + TopicResponse?: Omit & { + keyFields?: false | TopicResponseKeySpecifier | (() => undefined | TopicResponseKeySpecifier), + fields?: TopicResponseFieldPolicy, }, Error?: Omit & { keyFields?: false | ErrorKeySpecifier | (() => undefined | ErrorKeySpecifier), fields?: ErrorFieldPolicy, }, - TestResponse?: Omit & { - keyFields?: false | TestResponseKeySpecifier | (() => undefined | TestResponseKeySpecifier), - fields?: TestResponseFieldPolicy, - }, - AuthPayload?: Omit & { - keyFields?: false | AuthPayloadKeySpecifier | (() => undefined | AuthPayloadKeySpecifier), - fields?: AuthPayloadFieldPolicy, - }, - EthAccountResponse?: Omit & { - keyFields?: false | EthAccountResponseKeySpecifier | (() => undefined | EthAccountResponseKeySpecifier), - fields?: EthAccountResponseFieldPolicy, - }, - CodeChallengeCompletionResponse?: Omit & { - keyFields?: false | CodeChallengeCompletionResponseKeySpecifier | (() => undefined | CodeChallengeCompletionResponseKeySpecifier), - fields?: CodeChallengeCompletionResponseFieldPolicy, + PlaceResponse?: Omit & { + keyFields?: false | PlaceResponseKeySpecifier | (() => undefined | PlaceResponseKeySpecifier), + fields?: PlaceResponseFieldPolicy, }, - CareerResponse?: Omit & { - keyFields?: false | CareerResponseKeySpecifier | (() => undefined | CareerResponseKeySpecifier), - fields?: CareerResponseFieldPolicy, + BeerPayload?: Omit & { + keyFields?: false | BeerPayloadKeySpecifier | (() => undefined | BeerPayloadKeySpecifier), + fields?: BeerPayloadFieldPolicy, }, - UserTechnologyResponse?: Omit & { - keyFields?: false | UserTechnologyResponseKeySpecifier | (() => undefined | UserTechnologyResponseKeySpecifier), - fields?: UserTechnologyResponseFieldPolicy, + PlaceBeerPayload?: Omit & { + keyFields?: false | PlaceBeerPayloadKeySpecifier | (() => undefined | PlaceBeerPayloadKeySpecifier), + fields?: PlaceBeerPayloadFieldPolicy, }, - TechnologyLessonResponse?: Omit & { - keyFields?: false | TechnologyLessonResponseKeySpecifier | (() => undefined | TechnologyLessonResponseKeySpecifier), - fields?: TechnologyLessonResponseFieldPolicy, + PlacePayload?: Omit & { + keyFields?: false | PlacePayloadKeySpecifier | (() => undefined | PlacePayloadKeySpecifier), + fields?: PlacePayloadFieldPolicy, }, - TechnologyResponse?: Omit & { - keyFields?: false | TechnologyResponseKeySpecifier | (() => undefined | TechnologyResponseKeySpecifier), - fields?: TechnologyResponseFieldPolicy, + TarifRequest?: Omit & { + keyFields?: false | TarifRequestKeySpecifier | (() => undefined | TarifRequestKeySpecifier), + fields?: TarifRequestFieldPolicy, }, CommentResponse?: Omit & { keyFields?: false | CommentResponseKeySpecifier | (() => undefined | CommentResponseKeySpecifier), fields?: CommentResponseFieldPolicy, }, - TechnologyLessonUserResponse?: Omit & { - keyFields?: false | TechnologyLessonUserResponseKeySpecifier | (() => undefined | TechnologyLessonUserResponseKeySpecifier), - fields?: TechnologyLessonUserResponseFieldPolicy, - }, - BatchPayload?: Omit & { - keyFields?: false | BatchPayloadKeySpecifier | (() => undefined | BatchPayloadKeySpecifier), - fields?: BatchPayloadFieldPolicy, - }, - McJsAuthPayload?: Omit & { - keyFields?: false | McJsAuthPayloadKeySpecifier | (() => undefined | McJsAuthPayloadKeySpecifier), - fields?: McJsAuthPayloadFieldPolicy, - }, - FileResponse?: Omit & { - keyFields?: false | FileResponseKeySpecifier | (() => undefined | FileResponseKeySpecifier), - fields?: FileResponseFieldPolicy, - }, - SmsMessageResponse?: Omit & { - keyFields?: false | SmsMessageResponseKeySpecifier | (() => undefined | SmsMessageResponseKeySpecifier), - fields?: SmsMessageResponseFieldPolicy, - }, - SmsMessage?: Omit & { - keyFields?: false | SmsMessageKeySpecifier | (() => undefined | SmsMessageKeySpecifier), - fields?: SmsMessageFieldPolicy, - }, - SmsProvider?: Omit & { - keyFields?: false | SmsProviderKeySpecifier | (() => undefined | SmsProviderKeySpecifier), - fields?: SmsProviderFieldPolicy, - }, - LetsadsSmsMessageStatus?: Omit & { - keyFields?: false | LetsadsSmsMessageStatusKeySpecifier | (() => undefined | LetsadsSmsMessageStatusKeySpecifier), - fields?: LetsadsSmsMessageStatusFieldPolicy, - }, - LetsadsSmsMessageStatusItem?: Omit & { - keyFields?: false | LetsadsSmsMessageStatusItemKeySpecifier | (() => undefined | LetsadsSmsMessageStatusItemKeySpecifier), - fields?: LetsadsSmsMessageStatusItemFieldPolicy, - }, - SmsProviderResponse?: Omit & { - keyFields?: false | SmsProviderResponseKeySpecifier | (() => undefined | SmsProviderResponseKeySpecifier), - fields?: SmsProviderResponseFieldPolicy, + AuthPayload?: Omit & { + keyFields?: false | AuthPayloadKeySpecifier | (() => undefined | AuthPayloadKeySpecifier), + fields?: AuthPayloadFieldPolicy, }, UserResponse?: Omit & { keyFields?: false | UserResponseKeySpecifier | (() => undefined | UserResponseKeySpecifier), @@ -4469,141 +3115,25 @@ export type TypedTypePolicies = TypePolicies & { keyFields?: false | ResetPasswordKeySpecifier | (() => undefined | ResetPasswordKeySpecifier), fields?: ResetPasswordFieldPolicy, }, - TemplateResponse?: Omit & { - keyFields?: false | TemplateResponseKeySpecifier | (() => undefined | TemplateResponseKeySpecifier), - fields?: TemplateResponseFieldPolicy, - }, - GalleryResponse?: Omit & { - keyFields?: false | GalleryResponseKeySpecifier | (() => undefined | GalleryResponseKeySpecifier), - fields?: GalleryResponseFieldPolicy, - }, - GameResponse?: Omit & { - keyFields?: false | GameResponseKeySpecifier | (() => undefined | GameResponseKeySpecifier), - fields?: GameResponseFieldPolicy, - }, - GameResultResponse?: Omit & { - keyFields?: false | GameResultResponseKeySpecifier | (() => undefined | GameResultResponseKeySpecifier), - fields?: GameResultResponseFieldPolicy, - }, - TournamentResponse?: Omit & { - keyFields?: false | TournamentResponseKeySpecifier | (() => undefined | TournamentResponseKeySpecifier), - fields?: TournamentResponseFieldPolicy, - }, - TournamentGroupResponse?: Omit & { - keyFields?: false | TournamentGroupResponseKeySpecifier | (() => undefined | TournamentGroupResponseKeySpecifier), - fields?: TournamentGroupResponseFieldPolicy, - }, - TourneyResponse?: Omit & { - keyFields?: false | TourneyResponseKeySpecifier | (() => undefined | TourneyResponseKeySpecifier), - fields?: TourneyResponseFieldPolicy, - }, - ChatRoomResponse?: Omit & { - keyFields?: false | ChatRoomResponseKeySpecifier | (() => undefined | ChatRoomResponseKeySpecifier), - fields?: ChatRoomResponseFieldPolicy, - }, - ChatMessageReadedResponse?: Omit & { - keyFields?: false | ChatMessageReadedResponseKeySpecifier | (() => undefined | ChatMessageReadedResponseKeySpecifier), - fields?: ChatMessageReadedResponseFieldPolicy, - }, - ChatMessageResponse?: Omit & { - keyFields?: false | ChatMessageResponseKeySpecifier | (() => undefined | ChatMessageResponseKeySpecifier), - fields?: ChatMessageResponseFieldPolicy, - }, - EthContractSourceResponse?: Omit & { - keyFields?: false | EthContractSourceResponseKeySpecifier | (() => undefined | EthContractSourceResponseKeySpecifier), - fields?: EthContractSourceResponseFieldPolicy, - }, - EthTransactionResponse?: Omit & { - keyFields?: false | EthTransactionResponseKeySpecifier | (() => undefined | EthTransactionResponseKeySpecifier), - fields?: EthTransactionResponseFieldPolicy, - }, - CallRequestResponse?: Omit & { - keyFields?: false | CallRequestResponseKeySpecifier | (() => undefined | CallRequestResponseKeySpecifier), - fields?: CallRequestResponseFieldPolicy, - }, - ProjectResponse?: Omit & { - keyFields?: false | ProjectResponseKeySpecifier | (() => undefined | ProjectResponseKeySpecifier), - fields?: ProjectResponseFieldPolicy, - }, - ProjectMemberResponse?: Omit & { - keyFields?: false | ProjectMemberResponseKeySpecifier | (() => undefined | ProjectMemberResponseKeySpecifier), - fields?: ProjectMemberResponseFieldPolicy, - }, - TaskResponse?: Omit & { - keyFields?: false | TaskResponseKeySpecifier | (() => undefined | TaskResponseKeySpecifier), - fields?: TaskResponseFieldPolicy, - }, - TaskReactionResponse?: Omit & { - keyFields?: false | TaskReactionResponseKeySpecifier | (() => undefined | TaskReactionResponseKeySpecifier), - fields?: TaskReactionResponseFieldPolicy, - }, - TimerResponse?: Omit & { - keyFields?: false | TimerResponseKeySpecifier | (() => undefined | TimerResponseKeySpecifier), - fields?: TimerResponseFieldPolicy, - }, - TeamResponse?: Omit & { - keyFields?: false | TeamResponseKeySpecifier | (() => undefined | TeamResponseKeySpecifier), - fields?: TeamResponseFieldPolicy, - }, - TeamMemberResponse?: Omit & { - keyFields?: false | TeamMemberResponseKeySpecifier | (() => undefined | TeamMemberResponseKeySpecifier), - fields?: TeamMemberResponseFieldPolicy, - }, - ServiceResponse?: Omit & { - keyFields?: false | ServiceResponseKeySpecifier | (() => undefined | ServiceResponseKeySpecifier), - fields?: ServiceResponseFieldPolicy, - }, - PositionResponse?: Omit & { - keyFields?: false | PositionResponseKeySpecifier | (() => undefined | PositionResponseKeySpecifier), - fields?: PositionResponseFieldPolicy, - }, - RouteResponse?: Omit & { - keyFields?: false | RouteResponseKeySpecifier | (() => undefined | RouteResponseKeySpecifier), - fields?: RouteResponseFieldPolicy, - }, Subscription?: Omit & { keyFields?: false | SubscriptionKeySpecifier | (() => undefined | SubscriptionKeySpecifier), fields?: SubscriptionFieldPolicy, }, - GallerySubscriptionPayload?: Omit & { - keyFields?: false | GallerySubscriptionPayloadKeySpecifier | (() => undefined | GallerySubscriptionPayloadKeySpecifier), - fields?: GallerySubscriptionPayloadFieldPolicy, - }, - GalleryPreviousValues?: Omit & { - keyFields?: false | GalleryPreviousValuesKeySpecifier | (() => undefined | GalleryPreviousValuesKeySpecifier), - fields?: GalleryPreviousValuesFieldPolicy, - }, - PlayerSubscriptionPayload?: Omit & { - keyFields?: false | PlayerSubscriptionPayloadKeySpecifier | (() => undefined | PlayerSubscriptionPayloadKeySpecifier), - fields?: PlayerSubscriptionPayloadFieldPolicy, - }, - PlayerPreviousValues?: Omit & { - keyFields?: false | PlayerPreviousValuesKeySpecifier | (() => undefined | PlayerPreviousValuesKeySpecifier), - fields?: PlayerPreviousValuesFieldPolicy, - }, - WorldSubscriptionPayload?: Omit & { - keyFields?: false | WorldSubscriptionPayloadKeySpecifier | (() => undefined | WorldSubscriptionPayloadKeySpecifier), - fields?: WorldSubscriptionPayloadFieldPolicy, - }, - WorldPreviousValues?: Omit & { - keyFields?: false | WorldPreviousValuesKeySpecifier | (() => undefined | WorldPreviousValuesKeySpecifier), - fields?: WorldPreviousValuesFieldPolicy, - }, - MessageSubscriptionPayload?: Omit & { - keyFields?: false | MessageSubscriptionPayloadKeySpecifier | (() => undefined | MessageSubscriptionPayloadKeySpecifier), - fields?: MessageSubscriptionPayloadFieldPolicy, + RouteSubscriptionPayload?: Omit & { + keyFields?: false | RouteSubscriptionPayloadKeySpecifier | (() => undefined | RouteSubscriptionPayloadKeySpecifier), + fields?: RouteSubscriptionPayloadFieldPolicy, }, - MessagePreviousValues?: Omit & { - keyFields?: false | MessagePreviousValuesKeySpecifier | (() => undefined | MessagePreviousValuesKeySpecifier), - fields?: MessagePreviousValuesFieldPolicy, + RoutePreviousValues?: Omit & { + keyFields?: false | RoutePreviousValuesKeySpecifier | (() => undefined | RoutePreviousValuesKeySpecifier), + fields?: RoutePreviousValuesFieldPolicy, }, - NoticeSubscriptionPayload?: Omit & { - keyFields?: false | NoticeSubscriptionPayloadKeySpecifier | (() => undefined | NoticeSubscriptionPayloadKeySpecifier), - fields?: NoticeSubscriptionPayloadFieldPolicy, + EthTransactionSubscriptionPayload?: Omit & { + keyFields?: false | EthTransactionSubscriptionPayloadKeySpecifier | (() => undefined | EthTransactionSubscriptionPayloadKeySpecifier), + fields?: EthTransactionSubscriptionPayloadFieldPolicy, }, - NoticePreviousValues?: Omit & { - keyFields?: false | NoticePreviousValuesKeySpecifier | (() => undefined | NoticePreviousValuesKeySpecifier), - fields?: NoticePreviousValuesFieldPolicy, + EthTransactionPreviousValues?: Omit & { + keyFields?: false | EthTransactionPreviousValuesKeySpecifier | (() => undefined | EthTransactionPreviousValuesKeySpecifier), + fields?: EthTransactionPreviousValuesFieldPolicy, }, ChatMessageReadedSubscriptionPayload?: Omit & { keyFields?: false | ChatMessageReadedSubscriptionPayloadKeySpecifier | (() => undefined | ChatMessageReadedSubscriptionPayloadKeySpecifier), @@ -4621,6 +3151,14 @@ export type TypedTypePolicies = TypePolicies & { keyFields?: false | ChatRoomPreviousValuesKeySpecifier | (() => undefined | ChatRoomPreviousValuesKeySpecifier), fields?: ChatRoomPreviousValuesFieldPolicy, }, + NoticeSubscriptionPayload?: Omit & { + keyFields?: false | NoticeSubscriptionPayloadKeySpecifier | (() => undefined | NoticeSubscriptionPayloadKeySpecifier), + fields?: NoticeSubscriptionPayloadFieldPolicy, + }, + NoticePreviousValues?: Omit & { + keyFields?: false | NoticePreviousValuesKeySpecifier | (() => undefined | NoticePreviousValuesKeySpecifier), + fields?: NoticePreviousValuesFieldPolicy, + }, GameSubscriptionPayload?: Omit & { keyFields?: false | GameSubscriptionPayloadKeySpecifier | (() => undefined | GameSubscriptionPayloadKeySpecifier), fields?: GameSubscriptionPayloadFieldPolicy, @@ -4641,197 +3179,37 @@ export type TypedTypePolicies = TypePolicies & { keyFields?: false | TournamentSubscriptionPayloadKeySpecifier | (() => undefined | TournamentSubscriptionPayloadKeySpecifier), fields?: TournamentSubscriptionPayloadFieldPolicy, }, - TournamentPreviousValues?: Omit & { - keyFields?: false | TournamentPreviousValuesKeySpecifier | (() => undefined | TournamentPreviousValuesKeySpecifier), - fields?: TournamentPreviousValuesFieldPolicy, - }, - TournamentGroupSubscriptionPayload?: Omit & { - keyFields?: false | TournamentGroupSubscriptionPayloadKeySpecifier | (() => undefined | TournamentGroupSubscriptionPayloadKeySpecifier), - fields?: TournamentGroupSubscriptionPayloadFieldPolicy, - }, - TournamentGroupPreviousValues?: Omit & { - keyFields?: false | TournamentGroupPreviousValuesKeySpecifier | (() => undefined | TournamentGroupPreviousValuesKeySpecifier), - fields?: TournamentGroupPreviousValuesFieldPolicy, - }, - TourneySubscriptionPayload?: Omit & { - keyFields?: false | TourneySubscriptionPayloadKeySpecifier | (() => undefined | TourneySubscriptionPayloadKeySpecifier), - fields?: TourneySubscriptionPayloadFieldPolicy, - }, - TourneyPreviousValues?: Omit & { - keyFields?: false | TourneyPreviousValuesKeySpecifier | (() => undefined | TourneyPreviousValuesKeySpecifier), - fields?: TourneyPreviousValuesFieldPolicy, - }, - EthTransactionSubscriptionPayload?: Omit & { - keyFields?: false | EthTransactionSubscriptionPayloadKeySpecifier | (() => undefined | EthTransactionSubscriptionPayloadKeySpecifier), - fields?: EthTransactionSubscriptionPayloadFieldPolicy, - }, - CallRequestSubscriptionPayload?: Omit & { - keyFields?: false | CallRequestSubscriptionPayloadKeySpecifier | (() => undefined | CallRequestSubscriptionPayloadKeySpecifier), - fields?: CallRequestSubscriptionPayloadFieldPolicy, - }, - CallRequestPreviousValues?: Omit & { - keyFields?: false | CallRequestPreviousValuesKeySpecifier | (() => undefined | CallRequestPreviousValuesKeySpecifier), - fields?: CallRequestPreviousValuesFieldPolicy, - }, - PositionSubscriptionPayload?: Omit & { - keyFields?: false | PositionSubscriptionPayloadKeySpecifier | (() => undefined | PositionSubscriptionPayloadKeySpecifier), - fields?: PositionSubscriptionPayloadFieldPolicy, - }, - PositionPreviousValues?: Omit & { - keyFields?: false | PositionPreviousValuesKeySpecifier | (() => undefined | PositionPreviousValuesKeySpecifier), - fields?: PositionPreviousValuesFieldPolicy, - }, - ProjectMemberSubscriptionPayload?: Omit & { - keyFields?: false | ProjectMemberSubscriptionPayloadKeySpecifier | (() => undefined | ProjectMemberSubscriptionPayloadKeySpecifier), - fields?: ProjectMemberSubscriptionPayloadFieldPolicy, - }, - ProjectMemberPreviousValues?: Omit & { - keyFields?: false | ProjectMemberPreviousValuesKeySpecifier | (() => undefined | ProjectMemberPreviousValuesKeySpecifier), - fields?: ProjectMemberPreviousValuesFieldPolicy, - }, - ServiceSubscriptionPayload?: Omit & { - keyFields?: false | ServiceSubscriptionPayloadKeySpecifier | (() => undefined | ServiceSubscriptionPayloadKeySpecifier), - fields?: ServiceSubscriptionPayloadFieldPolicy, - }, - ServicePreviousValues?: Omit & { - keyFields?: false | ServicePreviousValuesKeySpecifier | (() => undefined | ServicePreviousValuesKeySpecifier), - fields?: ServicePreviousValuesFieldPolicy, - }, - TaskSubscriptionPayload?: Omit & { - keyFields?: false | TaskSubscriptionPayloadKeySpecifier | (() => undefined | TaskSubscriptionPayloadKeySpecifier), - fields?: TaskSubscriptionPayloadFieldPolicy, - }, - TaskPreviousValues?: Omit & { - keyFields?: false | TaskPreviousValuesKeySpecifier | (() => undefined | TaskPreviousValuesKeySpecifier), - fields?: TaskPreviousValuesFieldPolicy, - }, - TaskReactionSubscriptionPayload?: Omit & { - keyFields?: false | TaskReactionSubscriptionPayloadKeySpecifier | (() => undefined | TaskReactionSubscriptionPayloadKeySpecifier), - fields?: TaskReactionSubscriptionPayloadFieldPolicy, - }, - TaskReactionPreviousValues?: Omit & { - keyFields?: false | TaskReactionPreviousValuesKeySpecifier | (() => undefined | TaskReactionPreviousValuesKeySpecifier), - fields?: TaskReactionPreviousValuesFieldPolicy, - }, - TeamMemberSubscriptionPayload?: Omit & { - keyFields?: false | TeamMemberSubscriptionPayloadKeySpecifier | (() => undefined | TeamMemberSubscriptionPayloadKeySpecifier), - fields?: TeamMemberSubscriptionPayloadFieldPolicy, - }, - TeamMemberPreviousValues?: Omit & { - keyFields?: false | TeamMemberPreviousValuesKeySpecifier | (() => undefined | TeamMemberPreviousValuesKeySpecifier), - fields?: TeamMemberPreviousValuesFieldPolicy, - }, - TimerSubscriptionPayload?: Omit & { - keyFields?: false | TimerSubscriptionPayloadKeySpecifier | (() => undefined | TimerSubscriptionPayloadKeySpecifier), - fields?: TimerSubscriptionPayloadFieldPolicy, - }, - TimerPreviousValues?: Omit & { - keyFields?: false | TimerPreviousValuesKeySpecifier | (() => undefined | TimerPreviousValuesKeySpecifier), - fields?: TimerPreviousValuesFieldPolicy, - }, - RouteSubscriptionPayload?: Omit & { - keyFields?: false | RouteSubscriptionPayloadKeySpecifier | (() => undefined | RouteSubscriptionPayloadKeySpecifier), - fields?: RouteSubscriptionPayloadFieldPolicy, - }, - RoutePreviousValues?: Omit & { - keyFields?: false | RoutePreviousValuesKeySpecifier | (() => undefined | RoutePreviousValuesKeySpecifier), - fields?: RoutePreviousValuesFieldPolicy, - }, - CodeChallengeSubscriptionPayload?: Omit & { - keyFields?: false | CodeChallengeSubscriptionPayloadKeySpecifier | (() => undefined | CodeChallengeSubscriptionPayloadKeySpecifier), - fields?: CodeChallengeSubscriptionPayloadFieldPolicy, - }, - CodeChallengePreviousValues?: Omit & { - keyFields?: false | CodeChallengePreviousValuesKeySpecifier | (() => undefined | CodeChallengePreviousValuesKeySpecifier), - fields?: CodeChallengePreviousValuesFieldPolicy, - }, - CodeChallengeBlockSubscriptionPayload?: Omit & { - keyFields?: false | CodeChallengeBlockSubscriptionPayloadKeySpecifier | (() => undefined | CodeChallengeBlockSubscriptionPayloadKeySpecifier), - fields?: CodeChallengeBlockSubscriptionPayloadFieldPolicy, - }, - CodeChallengeBlockPreviousValues?: Omit & { - keyFields?: false | CodeChallengeBlockPreviousValuesKeySpecifier | (() => undefined | CodeChallengeBlockPreviousValuesKeySpecifier), - fields?: CodeChallengeBlockPreviousValuesFieldPolicy, - }, - CommentSubscriptionPayload?: Omit & { - keyFields?: false | CommentSubscriptionPayloadKeySpecifier | (() => undefined | CommentSubscriptionPayloadKeySpecifier), - fields?: CommentSubscriptionPayloadFieldPolicy, - }, - CommentPreviousValues?: Omit & { - keyFields?: false | CommentPreviousValuesKeySpecifier | (() => undefined | CommentPreviousValuesKeySpecifier), - fields?: CommentPreviousValuesFieldPolicy, - }, - TechnologyLessonSubscriptionPayload?: Omit & { - keyFields?: false | TechnologyLessonSubscriptionPayloadKeySpecifier | (() => undefined | TechnologyLessonSubscriptionPayloadKeySpecifier), - fields?: TechnologyLessonSubscriptionPayloadFieldPolicy, - }, - TechnologyLessonPreviousValues?: Omit & { - keyFields?: false | TechnologyLessonPreviousValuesKeySpecifier | (() => undefined | TechnologyLessonPreviousValuesKeySpecifier), - fields?: TechnologyLessonPreviousValuesFieldPolicy, - }, - CareerSubscriptionPayload?: Omit & { - keyFields?: false | CareerSubscriptionPayloadKeySpecifier | (() => undefined | CareerSubscriptionPayloadKeySpecifier), - fields?: CareerSubscriptionPayloadFieldPolicy, - }, - CareerPreviousValues?: Omit & { - keyFields?: false | CareerPreviousValuesKeySpecifier | (() => undefined | CareerPreviousValuesKeySpecifier), - fields?: CareerPreviousValuesFieldPolicy, - }, - TechnologyLessonUserSubscriptionPayload?: Omit & { - keyFields?: false | TechnologyLessonUserSubscriptionPayloadKeySpecifier | (() => undefined | TechnologyLessonUserSubscriptionPayloadKeySpecifier), - fields?: TechnologyLessonUserSubscriptionPayloadFieldPolicy, - }, - TechnologyLessonUserPreviousValues?: Omit & { - keyFields?: false | TechnologyLessonUserPreviousValuesKeySpecifier | (() => undefined | TechnologyLessonUserPreviousValuesKeySpecifier), - fields?: TechnologyLessonUserPreviousValuesFieldPolicy, - }, - UserTechnologySubscriptionPayload?: Omit & { - keyFields?: false | UserTechnologySubscriptionPayloadKeySpecifier | (() => undefined | UserTechnologySubscriptionPayloadKeySpecifier), - fields?: UserTechnologySubscriptionPayloadFieldPolicy, - }, - UserTechnologyPreviousValues?: Omit & { - keyFields?: false | UserTechnologyPreviousValuesKeySpecifier | (() => undefined | UserTechnologyPreviousValuesKeySpecifier), - fields?: UserTechnologyPreviousValuesFieldPolicy, - }, - TechnologySubscriptionPayload?: Omit & { - keyFields?: false | TechnologySubscriptionPayloadKeySpecifier | (() => undefined | TechnologySubscriptionPayloadKeySpecifier), - fields?: TechnologySubscriptionPayloadFieldPolicy, - }, - TechnologyPreviousValues?: Omit & { - keyFields?: false | TechnologyPreviousValuesKeySpecifier | (() => undefined | TechnologyPreviousValuesKeySpecifier), - fields?: TechnologyPreviousValuesFieldPolicy, - }, - TeamSubscriptionPayload?: Omit & { - keyFields?: false | TeamSubscriptionPayloadKeySpecifier | (() => undefined | TeamSubscriptionPayloadKeySpecifier), - fields?: TeamSubscriptionPayloadFieldPolicy, - }, - TeamPreviousValues?: Omit & { - keyFields?: false | TeamPreviousValuesKeySpecifier | (() => undefined | TeamPreviousValuesKeySpecifier), - fields?: TeamPreviousValuesFieldPolicy, + TournamentPreviousValues?: Omit & { + keyFields?: false | TournamentPreviousValuesKeySpecifier | (() => undefined | TournamentPreviousValuesKeySpecifier), + fields?: TournamentPreviousValuesFieldPolicy, }, - ProjectSubscriptionPayload?: Omit & { - keyFields?: false | ProjectSubscriptionPayloadKeySpecifier | (() => undefined | ProjectSubscriptionPayloadKeySpecifier), - fields?: ProjectSubscriptionPayloadFieldPolicy, + TournamentGroupSubscriptionPayload?: Omit & { + keyFields?: false | TournamentGroupSubscriptionPayloadKeySpecifier | (() => undefined | TournamentGroupSubscriptionPayloadKeySpecifier), + fields?: TournamentGroupSubscriptionPayloadFieldPolicy, }, - ProjectPreviousValues?: Omit & { - keyFields?: false | ProjectPreviousValuesKeySpecifier | (() => undefined | ProjectPreviousValuesKeySpecifier), - fields?: ProjectPreviousValuesFieldPolicy, + TournamentGroupPreviousValues?: Omit & { + keyFields?: false | TournamentGroupPreviousValuesKeySpecifier | (() => undefined | TournamentGroupPreviousValuesKeySpecifier), + fields?: TournamentGroupPreviousValuesFieldPolicy, }, - TemplateSubscriptionPayload?: Omit & { - keyFields?: false | TemplateSubscriptionPayloadKeySpecifier | (() => undefined | TemplateSubscriptionPayloadKeySpecifier), - fields?: TemplateSubscriptionPayloadFieldPolicy, + TourneySubscriptionPayload?: Omit & { + keyFields?: false | TourneySubscriptionPayloadKeySpecifier | (() => undefined | TourneySubscriptionPayloadKeySpecifier), + fields?: TourneySubscriptionPayloadFieldPolicy, }, - TemplatePreviousValues?: Omit & { - keyFields?: false | TemplatePreviousValuesKeySpecifier | (() => undefined | TemplatePreviousValuesKeySpecifier), - fields?: TemplatePreviousValuesFieldPolicy, + TourneyPreviousValues?: Omit & { + keyFields?: false | TourneyPreviousValuesKeySpecifier | (() => undefined | TourneyPreviousValuesKeySpecifier), + fields?: TourneyPreviousValuesFieldPolicy, }, - ResourceSubscriptionPayload?: Omit & { - keyFields?: false | ResourceSubscriptionPayloadKeySpecifier | (() => undefined | ResourceSubscriptionPayloadKeySpecifier), - fields?: ResourceSubscriptionPayloadFieldPolicy, + CallRequestSubscriptionPayload?: Omit & { + keyFields?: false | CallRequestSubscriptionPayloadKeySpecifier | (() => undefined | CallRequestSubscriptionPayloadKeySpecifier), + fields?: CallRequestSubscriptionPayloadFieldPolicy, }, - ResourcePreviousValues?: Omit & { - keyFields?: false | ResourcePreviousValuesKeySpecifier | (() => undefined | ResourcePreviousValuesKeySpecifier), - fields?: ResourcePreviousValuesFieldPolicy, + CallRequestPreviousValues?: Omit & { + keyFields?: false | CallRequestPreviousValuesKeySpecifier | (() => undefined | CallRequestPreviousValuesKeySpecifier), + fields?: CallRequestPreviousValuesFieldPolicy, + }, + UserSubscriptionPayload?: Omit & { + keyFields?: false | UserSubscriptionPayloadKeySpecifier | (() => undefined | UserSubscriptionPayloadKeySpecifier), + fields?: UserSubscriptionPayloadFieldPolicy, }, ChatMessageSubscriptionPayload?: Omit & { keyFields?: false | ChatMessageSubscriptionPayloadKeySpecifier | (() => undefined | ChatMessageSubscriptionPayloadKeySpecifier), @@ -4841,50 +3219,46 @@ export type TypedTypePolicies = TypePolicies & { keyFields?: false | ChatMessagePreviousValuesKeySpecifier | (() => undefined | ChatMessagePreviousValuesKeySpecifier), fields?: ChatMessagePreviousValuesFieldPolicy, }, - UserSubscriptionPayload?: Omit & { - keyFields?: false | UserSubscriptionPayloadKeySpecifier | (() => undefined | UserSubscriptionPayloadKeySpecifier), - fields?: UserSubscriptionPayloadFieldPolicy, - }, - UserPreviousValues?: Omit & { - keyFields?: false | UserPreviousValuesKeySpecifier | (() => undefined | UserPreviousValuesKeySpecifier), - fields?: UserPreviousValuesFieldPolicy, + MapPlaceConnectionEdges?: Omit & { + keyFields?: false | MapPlaceConnectionEdgesKeySpecifier | (() => undefined | MapPlaceConnectionEdgesKeySpecifier), + fields?: MapPlaceConnectionEdgesFieldPolicy, }, - ImportResponse?: Omit & { - keyFields?: false | ImportResponseKeySpecifier | (() => undefined | ImportResponseKeySpecifier), - fields?: ImportResponseFieldPolicy, + AccountConnection?: Omit & { + keyFields?: false | AccountConnectionKeySpecifier | (() => undefined | AccountConnectionKeySpecifier), + fields?: AccountConnectionFieldPolicy, }, - Import?: Omit & { - keyFields?: false | ImportKeySpecifier | (() => undefined | ImportKeySpecifier), - fields?: ImportFieldPolicy, + AccountEdge?: Omit & { + keyFields?: false | AccountEdgeKeySpecifier | (() => undefined | AccountEdgeKeySpecifier), + fields?: AccountEdgeFieldPolicy, }, - Log?: Omit & { - keyFields?: false | LogKeySpecifier | (() => undefined | LogKeySpecifier), - fields?: LogFieldPolicy, + AggregateAccount?: Omit & { + keyFields?: false | AggregateAccountKeySpecifier | (() => undefined | AggregateAccountKeySpecifier), + fields?: AggregateAccountFieldPolicy, }, - AggregateBlock?: Omit & { - keyFields?: false | AggregateBlockKeySpecifier | (() => undefined | AggregateBlockKeySpecifier), - fields?: AggregateBlockFieldPolicy, + AccountPreviousValues?: Omit & { + keyFields?: false | AccountPreviousValuesKeySpecifier | (() => undefined | AccountPreviousValuesKeySpecifier), + fields?: AccountPreviousValuesFieldPolicy, }, - AggregateChatMessageReaded?: Omit & { - keyFields?: false | AggregateChatMessageReadedKeySpecifier | (() => undefined | AggregateChatMessageReadedKeySpecifier), - fields?: AggregateChatMessageReadedFieldPolicy, + AccountSubscriptionPayload?: Omit & { + keyFields?: false | AccountSubscriptionPayloadKeySpecifier | (() => undefined | AccountSubscriptionPayloadKeySpecifier), + fields?: AccountSubscriptionPayloadFieldPolicy, }, AggregateChatRoomInvitation?: Omit & { keyFields?: false | AggregateChatRoomInvitationKeySpecifier | (() => undefined | AggregateChatRoomInvitationKeySpecifier), fields?: AggregateChatRoomInvitationFieldPolicy, }, + AggregateCity?: Omit & { + keyFields?: false | AggregateCityKeySpecifier | (() => undefined | AggregateCityKeySpecifier), + fields?: AggregateCityFieldPolicy, + }, + AggregateCommentType?: Omit & { + keyFields?: false | AggregateCommentTypeKeySpecifier | (() => undefined | AggregateCommentTypeKeySpecifier), + fields?: AggregateCommentTypeFieldPolicy, + }, AggregateFile?: Omit & { keyFields?: false | AggregateFileKeySpecifier | (() => undefined | AggregateFileKeySpecifier), fields?: AggregateFileFieldPolicy, }, - AggregateImport?: Omit & { - keyFields?: false | AggregateImportKeySpecifier | (() => undefined | AggregateImportKeySpecifier), - fields?: AggregateImportFieldPolicy, - }, - AggregateInventory?: Omit & { - keyFields?: false | AggregateInventoryKeySpecifier | (() => undefined | AggregateInventoryKeySpecifier), - fields?: AggregateInventoryFieldPolicy, - }, AggregateLetsadsSmsMessageStatus?: Omit & { keyFields?: false | AggregateLetsadsSmsMessageStatusKeySpecifier | (() => undefined | AggregateLetsadsSmsMessageStatusKeySpecifier), fields?: AggregateLetsadsSmsMessageStatusFieldPolicy, @@ -4905,30 +3279,22 @@ export type TypedTypePolicies = TypePolicies & { keyFields?: false | AggregateLogedInKeySpecifier | (() => undefined | AggregateLogedInKeySpecifier), fields?: AggregateLogedInFieldPolicy, }, - AggregateMessage?: Omit & { - keyFields?: false | AggregateMessageKeySpecifier | (() => undefined | AggregateMessageKeySpecifier), - fields?: AggregateMessageFieldPolicy, + AggregatePhoto?: Omit & { + keyFields?: false | AggregatePhotoKeySpecifier | (() => undefined | AggregatePhotoKeySpecifier), + fields?: AggregatePhotoFieldPolicy, }, - AggregatePlayer?: Omit & { - keyFields?: false | AggregatePlayerKeySpecifier | (() => undefined | AggregatePlayerKeySpecifier), - fields?: AggregatePlayerFieldPolicy, + AggregatePlaceBeer?: Omit & { + keyFields?: false | AggregatePlaceBeerKeySpecifier | (() => undefined | AggregatePlaceBeerKeySpecifier), + fields?: AggregatePlaceBeerFieldPolicy, }, - AggregateProjectTask?: Omit & { - keyFields?: false | AggregateProjectTaskKeySpecifier | (() => undefined | AggregateProjectTaskKeySpecifier), - fields?: AggregateProjectTaskFieldPolicy, + AggregateProject?: Omit & { + keyFields?: false | AggregateProjectKeySpecifier | (() => undefined | AggregateProjectKeySpecifier), + fields?: AggregateProjectFieldPolicy, }, AggregateResetPassword?: Omit & { keyFields?: false | AggregateResetPasswordKeySpecifier | (() => undefined | AggregateResetPasswordKeySpecifier), fields?: AggregateResetPasswordFieldPolicy, }, - AggregateServiceCategory?: Omit & { - keyFields?: false | AggregateServiceCategoryKeySpecifier | (() => undefined | AggregateServiceCategoryKeySpecifier), - fields?: AggregateServiceCategoryFieldPolicy, - }, - AggregateSettings?: Omit & { - keyFields?: false | AggregateSettingsKeySpecifier | (() => undefined | AggregateSettingsKeySpecifier), - fields?: AggregateSettingsFieldPolicy, - }, AggregateSmsMessage?: Omit & { keyFields?: false | AggregateSmsMessageKeySpecifier | (() => undefined | AggregateSmsMessageKeySpecifier), fields?: AggregateSmsMessageFieldPolicy, @@ -4937,41 +3303,41 @@ export type TypedTypePolicies = TypePolicies & { keyFields?: false | AggregateSmsProviderKeySpecifier | (() => undefined | AggregateSmsProviderKeySpecifier), fields?: AggregateSmsProviderFieldPolicy, }, - AggregateTaskMember?: Omit & { - keyFields?: false | AggregateTaskMemberKeySpecifier | (() => undefined | AggregateTaskMemberKeySpecifier), - fields?: AggregateTaskMemberFieldPolicy, + AggregateTarif?: Omit & { + keyFields?: false | AggregateTarifKeySpecifier | (() => undefined | AggregateTarifKeySpecifier), + fields?: AggregateTarifFieldPolicy, + }, + AggregateTarifRequest?: Omit & { + keyFields?: false | AggregateTarifRequestKeySpecifier | (() => undefined | AggregateTarifRequestKeySpecifier), + fields?: AggregateTarifRequestFieldPolicy, + }, + AggregateTeam?: Omit & { + keyFields?: false | AggregateTeamKeySpecifier | (() => undefined | AggregateTeamKeySpecifier), + fields?: AggregateTeamFieldPolicy, }, - AggregateTourneyPlayer?: Omit & { - keyFields?: false | AggregateTourneyPlayerKeySpecifier | (() => undefined | AggregateTourneyPlayerKeySpecifier), - fields?: AggregateTourneyPlayerFieldPolicy, + AggregateTransaction?: Omit & { + keyFields?: false | AggregateTransactionKeySpecifier | (() => undefined | AggregateTransactionKeySpecifier), + fields?: AggregateTransactionFieldPolicy, }, AggregateUserGroup?: Omit & { keyFields?: false | AggregateUserGroupKeySpecifier | (() => undefined | AggregateUserGroupKeySpecifier), fields?: AggregateUserGroupFieldPolicy, }, - BlockConnection?: Omit & { - keyFields?: false | BlockConnectionKeySpecifier | (() => undefined | BlockConnectionKeySpecifier), - fields?: BlockConnectionFieldPolicy, - }, - BlockEdge?: Omit & { - keyFields?: false | BlockEdgeKeySpecifier | (() => undefined | BlockEdgeKeySpecifier), - fields?: BlockEdgeFieldPolicy, + AggregateUserTarif?: Omit & { + keyFields?: false | AggregateUserTarifKeySpecifier | (() => undefined | AggregateUserTarifKeySpecifier), + fields?: AggregateUserTarifFieldPolicy, }, - BlockPreviousValues?: Omit & { - keyFields?: false | BlockPreviousValuesKeySpecifier | (() => undefined | BlockPreviousValuesKeySpecifier), - fields?: BlockPreviousValuesFieldPolicy, - }, - BlockSubscriptionPayload?: Omit & { - keyFields?: false | BlockSubscriptionPayloadKeySpecifier | (() => undefined | BlockSubscriptionPayloadKeySpecifier), - fields?: BlockSubscriptionPayloadFieldPolicy, + BatchPayload?: Omit & { + keyFields?: false | BatchPayloadKeySpecifier | (() => undefined | BatchPayloadKeySpecifier), + fields?: BatchPayloadFieldPolicy, }, - ChatMessageReadedConnection?: Omit & { - keyFields?: false | ChatMessageReadedConnectionKeySpecifier | (() => undefined | ChatMessageReadedConnectionKeySpecifier), - fields?: ChatMessageReadedConnectionFieldPolicy, + BeerPreviousValues?: Omit & { + keyFields?: false | BeerPreviousValuesKeySpecifier | (() => undefined | BeerPreviousValuesKeySpecifier), + fields?: BeerPreviousValuesFieldPolicy, }, - ChatMessageReadedEdge?: Omit & { - keyFields?: false | ChatMessageReadedEdgeKeySpecifier | (() => undefined | ChatMessageReadedEdgeKeySpecifier), - fields?: ChatMessageReadedEdgeFieldPolicy, + BeerSubscriptionPayload?: Omit & { + keyFields?: false | BeerSubscriptionPayloadKeySpecifier | (() => undefined | BeerSubscriptionPayloadKeySpecifier), + fields?: BeerSubscriptionPayloadFieldPolicy, }, ChatRoomInvitationConnection?: Omit & { keyFields?: false | ChatRoomInvitationConnectionKeySpecifier | (() => undefined | ChatRoomInvitationConnectionKeySpecifier), @@ -4989,13 +3355,49 @@ export type TypedTypePolicies = TypePolicies & { keyFields?: false | ChatRoomInvitationSubscriptionPayloadKeySpecifier | (() => undefined | ChatRoomInvitationSubscriptionPayloadKeySpecifier), fields?: ChatRoomInvitationSubscriptionPayloadFieldPolicy, }, - CodeChallengeCompletionPreviousValues?: Omit & { - keyFields?: false | CodeChallengeCompletionPreviousValuesKeySpecifier | (() => undefined | CodeChallengeCompletionPreviousValuesKeySpecifier), - fields?: CodeChallengeCompletionPreviousValuesFieldPolicy, + CityConnection?: Omit & { + keyFields?: false | CityConnectionKeySpecifier | (() => undefined | CityConnectionKeySpecifier), + fields?: CityConnectionFieldPolicy, + }, + CityEdge?: Omit & { + keyFields?: false | CityEdgeKeySpecifier | (() => undefined | CityEdgeKeySpecifier), + fields?: CityEdgeFieldPolicy, + }, + CityPreviousValues?: Omit & { + keyFields?: false | CityPreviousValuesKeySpecifier | (() => undefined | CityPreviousValuesKeySpecifier), + fields?: CityPreviousValuesFieldPolicy, }, - CodeChallengeCompletionSubscriptionPayload?: Omit & { - keyFields?: false | CodeChallengeCompletionSubscriptionPayloadKeySpecifier | (() => undefined | CodeChallengeCompletionSubscriptionPayloadKeySpecifier), - fields?: CodeChallengeCompletionSubscriptionPayloadFieldPolicy, + CitySubscriptionPayload?: Omit & { + keyFields?: false | CitySubscriptionPayloadKeySpecifier | (() => undefined | CitySubscriptionPayloadKeySpecifier), + fields?: CitySubscriptionPayloadFieldPolicy, + }, + CommentPreviousValues?: Omit & { + keyFields?: false | CommentPreviousValuesKeySpecifier | (() => undefined | CommentPreviousValuesKeySpecifier), + fields?: CommentPreviousValuesFieldPolicy, + }, + CommentSubscriptionPayload?: Omit & { + keyFields?: false | CommentSubscriptionPayloadKeySpecifier | (() => undefined | CommentSubscriptionPayloadKeySpecifier), + fields?: CommentSubscriptionPayloadFieldPolicy, + }, + CommentType?: Omit & { + keyFields?: false | CommentTypeKeySpecifier | (() => undefined | CommentTypeKeySpecifier), + fields?: CommentTypeFieldPolicy, + }, + CommentTypeConnection?: Omit & { + keyFields?: false | CommentTypeConnectionKeySpecifier | (() => undefined | CommentTypeConnectionKeySpecifier), + fields?: CommentTypeConnectionFieldPolicy, + }, + CommentTypeEdge?: Omit & { + keyFields?: false | CommentTypeEdgeKeySpecifier | (() => undefined | CommentTypeEdgeKeySpecifier), + fields?: CommentTypeEdgeFieldPolicy, + }, + CommentTypePreviousValues?: Omit & { + keyFields?: false | CommentTypePreviousValuesKeySpecifier | (() => undefined | CommentTypePreviousValuesKeySpecifier), + fields?: CommentTypePreviousValuesFieldPolicy, + }, + CommentTypeSubscriptionPayload?: Omit & { + keyFields?: false | CommentTypeSubscriptionPayloadKeySpecifier | (() => undefined | CommentTypeSubscriptionPayloadKeySpecifier), + fields?: CommentTypeSubscriptionPayloadFieldPolicy, }, EthAccountPreviousValues?: Omit & { keyFields?: false | EthAccountPreviousValuesKeySpecifier | (() => undefined | EthAccountPreviousValuesKeySpecifier), @@ -5021,10 +3423,6 @@ export type TypedTypePolicies = TypePolicies & { keyFields?: false | EthContractSourceSubscriptionPayloadKeySpecifier | (() => undefined | EthContractSourceSubscriptionPayloadKeySpecifier), fields?: EthContractSourceSubscriptionPayloadFieldPolicy, }, - EthTransactionPreviousValues?: Omit & { - keyFields?: false | EthTransactionPreviousValuesKeySpecifier | (() => undefined | EthTransactionPreviousValuesKeySpecifier), - fields?: EthTransactionPreviousValuesFieldPolicy, - }, FileConnection?: Omit & { keyFields?: false | FileConnectionKeySpecifier | (() => undefined | FileConnectionKeySpecifier), fields?: FileConnectionFieldPolicy, @@ -5041,37 +3439,21 @@ export type TypedTypePolicies = TypePolicies & { keyFields?: false | FileSubscriptionPayloadKeySpecifier | (() => undefined | FileSubscriptionPayloadKeySpecifier), fields?: FileSubscriptionPayloadFieldPolicy, }, - ImportConnection?: Omit & { - keyFields?: false | ImportConnectionKeySpecifier | (() => undefined | ImportConnectionKeySpecifier), - fields?: ImportConnectionFieldPolicy, - }, - ImportEdge?: Omit & { - keyFields?: false | ImportEdgeKeySpecifier | (() => undefined | ImportEdgeKeySpecifier), - fields?: ImportEdgeFieldPolicy, - }, - ImportPreviousValues?: Omit & { - keyFields?: false | ImportPreviousValuesKeySpecifier | (() => undefined | ImportPreviousValuesKeySpecifier), - fields?: ImportPreviousValuesFieldPolicy, - }, - ImportSubscriptionPayload?: Omit & { - keyFields?: false | ImportSubscriptionPayloadKeySpecifier | (() => undefined | ImportSubscriptionPayloadKeySpecifier), - fields?: ImportSubscriptionPayloadFieldPolicy, - }, - InventoryConnection?: Omit & { - keyFields?: false | InventoryConnectionKeySpecifier | (() => undefined | InventoryConnectionKeySpecifier), - fields?: InventoryConnectionFieldPolicy, + LetsadsSmsMessageStatus?: Omit & { + keyFields?: false | LetsadsSmsMessageStatusKeySpecifier | (() => undefined | LetsadsSmsMessageStatusKeySpecifier), + fields?: LetsadsSmsMessageStatusFieldPolicy, }, - InventoryEdge?: Omit & { - keyFields?: false | InventoryEdgeKeySpecifier | (() => undefined | InventoryEdgeKeySpecifier), - fields?: InventoryEdgeFieldPolicy, + SmsMessage?: Omit & { + keyFields?: false | SmsMessageKeySpecifier | (() => undefined | SmsMessageKeySpecifier), + fields?: SmsMessageFieldPolicy, }, - InventoryPreviousValues?: Omit & { - keyFields?: false | InventoryPreviousValuesKeySpecifier | (() => undefined | InventoryPreviousValuesKeySpecifier), - fields?: InventoryPreviousValuesFieldPolicy, + SmsProvider?: Omit & { + keyFields?: false | SmsProviderKeySpecifier | (() => undefined | SmsProviderKeySpecifier), + fields?: SmsProviderFieldPolicy, }, - InventorySubscriptionPayload?: Omit & { - keyFields?: false | InventorySubscriptionPayloadKeySpecifier | (() => undefined | InventorySubscriptionPayloadKeySpecifier), - fields?: InventorySubscriptionPayloadFieldPolicy, + LetsadsSmsMessageStatusItem?: Omit & { + keyFields?: false | LetsadsSmsMessageStatusItemKeySpecifier | (() => undefined | LetsadsSmsMessageStatusItemKeySpecifier), + fields?: LetsadsSmsMessageStatusItemFieldPolicy, }, LetsadsSmsMessageStatusConnection?: Omit & { keyFields?: false | LetsadsSmsMessageStatusConnectionKeySpecifier | (() => undefined | LetsadsSmsMessageStatusConnectionKeySpecifier), @@ -5105,10 +3487,6 @@ export type TypedTypePolicies = TypePolicies & { keyFields?: false | LetsadsSmsMessageStatusSubscriptionPayloadKeySpecifier | (() => undefined | LetsadsSmsMessageStatusSubscriptionPayloadKeySpecifier), fields?: LetsadsSmsMessageStatusSubscriptionPayloadFieldPolicy, }, - Letter?: Omit & { - keyFields?: false | LetterKeySpecifier | (() => undefined | LetterKeySpecifier), - fields?: LetterFieldPolicy, - }, LetterConnection?: Omit & { keyFields?: false | LetterConnectionKeySpecifier | (() => undefined | LetterConnectionKeySpecifier), fields?: LetterConnectionFieldPolicy, @@ -5125,6 +3503,10 @@ export type TypedTypePolicies = TypePolicies & { keyFields?: false | LetterSubscriptionPayloadKeySpecifier | (() => undefined | LetterSubscriptionPayloadKeySpecifier), fields?: LetterSubscriptionPayloadFieldPolicy, }, + Log?: Omit & { + keyFields?: false | LogKeySpecifier | (() => undefined | LogKeySpecifier), + fields?: LogFieldPolicy, + }, LogConnection?: Omit & { keyFields?: false | LogConnectionKeySpecifier | (() => undefined | LogConnectionKeySpecifier), fields?: LogConnectionFieldPolicy, @@ -5157,14 +3539,6 @@ export type TypedTypePolicies = TypePolicies & { keyFields?: false | LogSubscriptionPayloadKeySpecifier | (() => undefined | LogSubscriptionPayloadKeySpecifier), fields?: LogSubscriptionPayloadFieldPolicy, }, - MessageConnection?: Omit & { - keyFields?: false | MessageConnectionKeySpecifier | (() => undefined | MessageConnectionKeySpecifier), - fields?: MessageConnectionFieldPolicy, - }, - MessageEdge?: Omit & { - keyFields?: false | MessageEdgeKeySpecifier | (() => undefined | MessageEdgeKeySpecifier), - fields?: MessageEdgeFieldPolicy, - }, NotificationTypePreviousValues?: Omit & { keyFields?: false | NotificationTypePreviousValuesKeySpecifier | (() => undefined | NotificationTypePreviousValuesKeySpecifier), fields?: NotificationTypePreviousValuesFieldPolicy, @@ -5173,29 +3547,65 @@ export type TypedTypePolicies = TypePolicies & { keyFields?: false | NotificationTypeSubscriptionPayloadKeySpecifier | (() => undefined | NotificationTypeSubscriptionPayloadKeySpecifier), fields?: NotificationTypeSubscriptionPayloadFieldPolicy, }, - PlayerConnection?: Omit & { - keyFields?: false | PlayerConnectionKeySpecifier | (() => undefined | PlayerConnectionKeySpecifier), - fields?: PlayerConnectionFieldPolicy, + Photo?: Omit & { + keyFields?: false | PhotoKeySpecifier | (() => undefined | PhotoKeySpecifier), + fields?: PhotoFieldPolicy, + }, + PhotoConnection?: Omit & { + keyFields?: false | PhotoConnectionKeySpecifier | (() => undefined | PhotoConnectionKeySpecifier), + fields?: PhotoConnectionFieldPolicy, + }, + PhotoEdge?: Omit & { + keyFields?: false | PhotoEdgeKeySpecifier | (() => undefined | PhotoEdgeKeySpecifier), + fields?: PhotoEdgeFieldPolicy, + }, + PhotoPreviousValues?: Omit & { + keyFields?: false | PhotoPreviousValuesKeySpecifier | (() => undefined | PhotoPreviousValuesKeySpecifier), + fields?: PhotoPreviousValuesFieldPolicy, + }, + PhotoSubscriptionPayload?: Omit & { + keyFields?: false | PhotoSubscriptionPayloadKeySpecifier | (() => undefined | PhotoSubscriptionPayloadKeySpecifier), + fields?: PhotoSubscriptionPayloadFieldPolicy, + }, + PlaceBeerConnection?: Omit & { + keyFields?: false | PlaceBeerConnectionKeySpecifier | (() => undefined | PlaceBeerConnectionKeySpecifier), + fields?: PlaceBeerConnectionFieldPolicy, }, - PlayerEdge?: Omit & { - keyFields?: false | PlayerEdgeKeySpecifier | (() => undefined | PlayerEdgeKeySpecifier), - fields?: PlayerEdgeFieldPolicy, + PlaceBeerEdge?: Omit & { + keyFields?: false | PlaceBeerEdgeKeySpecifier | (() => undefined | PlaceBeerEdgeKeySpecifier), + fields?: PlaceBeerEdgeFieldPolicy, }, - ProjectTaskConnection?: Omit & { - keyFields?: false | ProjectTaskConnectionKeySpecifier | (() => undefined | ProjectTaskConnectionKeySpecifier), - fields?: ProjectTaskConnectionFieldPolicy, + PlaceBeerPreviousValues?: Omit & { + keyFields?: false | PlaceBeerPreviousValuesKeySpecifier | (() => undefined | PlaceBeerPreviousValuesKeySpecifier), + fields?: PlaceBeerPreviousValuesFieldPolicy, }, - ProjectTaskEdge?: Omit & { - keyFields?: false | ProjectTaskEdgeKeySpecifier | (() => undefined | ProjectTaskEdgeKeySpecifier), - fields?: ProjectTaskEdgeFieldPolicy, + PlaceBeerSubscriptionPayload?: Omit & { + keyFields?: false | PlaceBeerSubscriptionPayloadKeySpecifier | (() => undefined | PlaceBeerSubscriptionPayloadKeySpecifier), + fields?: PlaceBeerSubscriptionPayloadFieldPolicy, }, - ProjectTaskPreviousValues?: Omit & { - keyFields?: false | ProjectTaskPreviousValuesKeySpecifier | (() => undefined | ProjectTaskPreviousValuesKeySpecifier), - fields?: ProjectTaskPreviousValuesFieldPolicy, + PlacePreviousValues?: Omit & { + keyFields?: false | PlacePreviousValuesKeySpecifier | (() => undefined | PlacePreviousValuesKeySpecifier), + fields?: PlacePreviousValuesFieldPolicy, }, - ProjectTaskSubscriptionPayload?: Omit & { - keyFields?: false | ProjectTaskSubscriptionPayloadKeySpecifier | (() => undefined | ProjectTaskSubscriptionPayloadKeySpecifier), - fields?: ProjectTaskSubscriptionPayloadFieldPolicy, + PlaceSubscriptionPayload?: Omit & { + keyFields?: false | PlaceSubscriptionPayloadKeySpecifier | (() => undefined | PlaceSubscriptionPayloadKeySpecifier), + fields?: PlaceSubscriptionPayloadFieldPolicy, + }, + ProjectConnection?: Omit & { + keyFields?: false | ProjectConnectionKeySpecifier | (() => undefined | ProjectConnectionKeySpecifier), + fields?: ProjectConnectionFieldPolicy, + }, + ProjectEdge?: Omit & { + keyFields?: false | ProjectEdgeKeySpecifier | (() => undefined | ProjectEdgeKeySpecifier), + fields?: ProjectEdgeFieldPolicy, + }, + ProjectPreviousValues?: Omit & { + keyFields?: false | ProjectPreviousValuesKeySpecifier | (() => undefined | ProjectPreviousValuesKeySpecifier), + fields?: ProjectPreviousValuesFieldPolicy, + }, + ProjectSubscriptionPayload?: Omit & { + keyFields?: false | ProjectSubscriptionPayloadKeySpecifier | (() => undefined | ProjectSubscriptionPayloadKeySpecifier), + fields?: ProjectSubscriptionPayloadFieldPolicy, }, ResetPasswordConnection?: Omit & { keyFields?: false | ResetPasswordConnectionKeySpecifier | (() => undefined | ResetPasswordConnectionKeySpecifier), @@ -5213,6 +3623,14 @@ export type TypedTypePolicies = TypePolicies & { keyFields?: false | ResetPasswordSubscriptionPayloadKeySpecifier | (() => undefined | ResetPasswordSubscriptionPayloadKeySpecifier), fields?: ResetPasswordSubscriptionPayloadFieldPolicy, }, + ResourcePreviousValues?: Omit & { + keyFields?: false | ResourcePreviousValuesKeySpecifier | (() => undefined | ResourcePreviousValuesKeySpecifier), + fields?: ResourcePreviousValuesFieldPolicy, + }, + ResourceSubscriptionPayload?: Omit & { + keyFields?: false | ResourceSubscriptionPayloadKeySpecifier | (() => undefined | ResourceSubscriptionPayloadKeySpecifier), + fields?: ResourceSubscriptionPayloadFieldPolicy, + }, ResourceTagPreviousValues?: Omit & { keyFields?: false | ResourceTagPreviousValuesKeySpecifier | (() => undefined | ResourceTagPreviousValuesKeySpecifier), fields?: ResourceTagPreviousValuesFieldPolicy, @@ -5221,38 +3639,6 @@ export type TypedTypePolicies = TypePolicies & { keyFields?: false | ResourceTagSubscriptionPayloadKeySpecifier | (() => undefined | ResourceTagSubscriptionPayloadKeySpecifier), fields?: ResourceTagSubscriptionPayloadFieldPolicy, }, - ServiceCategoryConnection?: Omit & { - keyFields?: false | ServiceCategoryConnectionKeySpecifier | (() => undefined | ServiceCategoryConnectionKeySpecifier), - fields?: ServiceCategoryConnectionFieldPolicy, - }, - ServiceCategoryEdge?: Omit & { - keyFields?: false | ServiceCategoryEdgeKeySpecifier | (() => undefined | ServiceCategoryEdgeKeySpecifier), - fields?: ServiceCategoryEdgeFieldPolicy, - }, - ServiceCategoryPreviousValues?: Omit & { - keyFields?: false | ServiceCategoryPreviousValuesKeySpecifier | (() => undefined | ServiceCategoryPreviousValuesKeySpecifier), - fields?: ServiceCategoryPreviousValuesFieldPolicy, - }, - ServiceCategorySubscriptionPayload?: Omit & { - keyFields?: false | ServiceCategorySubscriptionPayloadKeySpecifier | (() => undefined | ServiceCategorySubscriptionPayloadKeySpecifier), - fields?: ServiceCategorySubscriptionPayloadFieldPolicy, - }, - SettingsConnection?: Omit & { - keyFields?: false | SettingsConnectionKeySpecifier | (() => undefined | SettingsConnectionKeySpecifier), - fields?: SettingsConnectionFieldPolicy, - }, - SettingsEdge?: Omit & { - keyFields?: false | SettingsEdgeKeySpecifier | (() => undefined | SettingsEdgeKeySpecifier), - fields?: SettingsEdgeFieldPolicy, - }, - SettingsPreviousValues?: Omit & { - keyFields?: false | SettingsPreviousValuesKeySpecifier | (() => undefined | SettingsPreviousValuesKeySpecifier), - fields?: SettingsPreviousValuesFieldPolicy, - }, - SettingsSubscriptionPayload?: Omit & { - keyFields?: false | SettingsSubscriptionPayloadKeySpecifier | (() => undefined | SettingsSubscriptionPayloadKeySpecifier), - fields?: SettingsSubscriptionPayloadFieldPolicy, - }, SmsMessageConnection?: Omit & { keyFields?: false | SmsMessageConnectionKeySpecifier | (() => undefined | SmsMessageConnectionKeySpecifier), fields?: SmsMessageConnectionFieldPolicy, @@ -5293,45 +3679,77 @@ export type TypedTypePolicies = TypePolicies & { keyFields?: false | TagSubscriptionPayloadKeySpecifier | (() => undefined | TagSubscriptionPayloadKeySpecifier), fields?: TagSubscriptionPayloadFieldPolicy, }, - TaskMemberConnection?: Omit & { - keyFields?: false | TaskMemberConnectionKeySpecifier | (() => undefined | TaskMemberConnectionKeySpecifier), - fields?: TaskMemberConnectionFieldPolicy, + TarifConnection?: Omit & { + keyFields?: false | TarifConnectionKeySpecifier | (() => undefined | TarifConnectionKeySpecifier), + fields?: TarifConnectionFieldPolicy, }, - TaskMemberEdge?: Omit & { - keyFields?: false | TaskMemberEdgeKeySpecifier | (() => undefined | TaskMemberEdgeKeySpecifier), - fields?: TaskMemberEdgeFieldPolicy, + TarifEdge?: Omit & { + keyFields?: false | TarifEdgeKeySpecifier | (() => undefined | TarifEdgeKeySpecifier), + fields?: TarifEdgeFieldPolicy, }, - TaskMemberPreviousValues?: Omit & { - keyFields?: false | TaskMemberPreviousValuesKeySpecifier | (() => undefined | TaskMemberPreviousValuesKeySpecifier), - fields?: TaskMemberPreviousValuesFieldPolicy, + TarifPreviousValues?: Omit & { + keyFields?: false | TarifPreviousValuesKeySpecifier | (() => undefined | TarifPreviousValuesKeySpecifier), + fields?: TarifPreviousValuesFieldPolicy, }, - TaskMemberSubscriptionPayload?: Omit & { - keyFields?: false | TaskMemberSubscriptionPayloadKeySpecifier | (() => undefined | TaskMemberSubscriptionPayloadKeySpecifier), - fields?: TaskMemberSubscriptionPayloadFieldPolicy, + TarifRequestConnection?: Omit & { + keyFields?: false | TarifRequestConnectionKeySpecifier | (() => undefined | TarifRequestConnectionKeySpecifier), + fields?: TarifRequestConnectionFieldPolicy, }, - TestPreviousValues?: Omit & { - keyFields?: false | TestPreviousValuesKeySpecifier | (() => undefined | TestPreviousValuesKeySpecifier), - fields?: TestPreviousValuesFieldPolicy, + TarifRequestEdge?: Omit & { + keyFields?: false | TarifRequestEdgeKeySpecifier | (() => undefined | TarifRequestEdgeKeySpecifier), + fields?: TarifRequestEdgeFieldPolicy, }, - TestSubscriptionPayload?: Omit & { - keyFields?: false | TestSubscriptionPayloadKeySpecifier | (() => undefined | TestSubscriptionPayloadKeySpecifier), - fields?: TestSubscriptionPayloadFieldPolicy, + TarifRequestPreviousValues?: Omit & { + keyFields?: false | TarifRequestPreviousValuesKeySpecifier | (() => undefined | TarifRequestPreviousValuesKeySpecifier), + fields?: TarifRequestPreviousValuesFieldPolicy, }, - TourneyPlayerConnection?: Omit & { - keyFields?: false | TourneyPlayerConnectionKeySpecifier | (() => undefined | TourneyPlayerConnectionKeySpecifier), - fields?: TourneyPlayerConnectionFieldPolicy, + TarifRequestSubscriptionPayload?: Omit & { + keyFields?: false | TarifRequestSubscriptionPayloadKeySpecifier | (() => undefined | TarifRequestSubscriptionPayloadKeySpecifier), + fields?: TarifRequestSubscriptionPayloadFieldPolicy, }, - TourneyPlayerEdge?: Omit & { - keyFields?: false | TourneyPlayerEdgeKeySpecifier | (() => undefined | TourneyPlayerEdgeKeySpecifier), - fields?: TourneyPlayerEdgeFieldPolicy, + TarifSubscriptionPayload?: Omit & { + keyFields?: false | TarifSubscriptionPayloadKeySpecifier | (() => undefined | TarifSubscriptionPayloadKeySpecifier), + fields?: TarifSubscriptionPayloadFieldPolicy, }, - TourneyPlayerPreviousValues?: Omit & { - keyFields?: false | TourneyPlayerPreviousValuesKeySpecifier | (() => undefined | TourneyPlayerPreviousValuesKeySpecifier), - fields?: TourneyPlayerPreviousValuesFieldPolicy, + TeamConnection?: Omit & { + keyFields?: false | TeamConnectionKeySpecifier | (() => undefined | TeamConnectionKeySpecifier), + fields?: TeamConnectionFieldPolicy, + }, + TeamEdge?: Omit & { + keyFields?: false | TeamEdgeKeySpecifier | (() => undefined | TeamEdgeKeySpecifier), + fields?: TeamEdgeFieldPolicy, + }, + TeamPreviousValues?: Omit & { + keyFields?: false | TeamPreviousValuesKeySpecifier | (() => undefined | TeamPreviousValuesKeySpecifier), + fields?: TeamPreviousValuesFieldPolicy, + }, + TeamSubscriptionPayload?: Omit & { + keyFields?: false | TeamSubscriptionPayloadKeySpecifier | (() => undefined | TeamSubscriptionPayloadKeySpecifier), + fields?: TeamSubscriptionPayloadFieldPolicy, + }, + TopicPreviousValues?: Omit & { + keyFields?: false | TopicPreviousValuesKeySpecifier | (() => undefined | TopicPreviousValuesKeySpecifier), + fields?: TopicPreviousValuesFieldPolicy, }, - TourneyPlayerSubscriptionPayload?: Omit & { - keyFields?: false | TourneyPlayerSubscriptionPayloadKeySpecifier | (() => undefined | TourneyPlayerSubscriptionPayloadKeySpecifier), - fields?: TourneyPlayerSubscriptionPayloadFieldPolicy, + TopicSubscriptionPayload?: Omit & { + keyFields?: false | TopicSubscriptionPayloadKeySpecifier | (() => undefined | TopicSubscriptionPayloadKeySpecifier), + fields?: TopicSubscriptionPayloadFieldPolicy, + }, + TransactionConnection?: Omit & { + keyFields?: false | TransactionConnectionKeySpecifier | (() => undefined | TransactionConnectionKeySpecifier), + fields?: TransactionConnectionFieldPolicy, + }, + TransactionEdge?: Omit & { + keyFields?: false | TransactionEdgeKeySpecifier | (() => undefined | TransactionEdgeKeySpecifier), + fields?: TransactionEdgeFieldPolicy, + }, + TransactionPreviousValues?: Omit & { + keyFields?: false | TransactionPreviousValuesKeySpecifier | (() => undefined | TransactionPreviousValuesKeySpecifier), + fields?: TransactionPreviousValuesFieldPolicy, + }, + TransactionSubscriptionPayload?: Omit & { + keyFields?: false | TransactionSubscriptionPayloadKeySpecifier | (() => undefined | TransactionSubscriptionPayloadKeySpecifier), + fields?: TransactionSubscriptionPayloadFieldPolicy, }, UserGroupConnection?: Omit & { keyFields?: false | UserGroupConnectionKeySpecifier | (() => undefined | UserGroupConnectionKeySpecifier), @@ -5349,6 +3767,26 @@ export type TypedTypePolicies = TypePolicies & { keyFields?: false | UserGroupSubscriptionPayloadKeySpecifier | (() => undefined | UserGroupSubscriptionPayloadKeySpecifier), fields?: UserGroupSubscriptionPayloadFieldPolicy, }, + UserPreviousValues?: Omit & { + keyFields?: false | UserPreviousValuesKeySpecifier | (() => undefined | UserPreviousValuesKeySpecifier), + fields?: UserPreviousValuesFieldPolicy, + }, + UserTarifConnection?: Omit & { + keyFields?: false | UserTarifConnectionKeySpecifier | (() => undefined | UserTarifConnectionKeySpecifier), + fields?: UserTarifConnectionFieldPolicy, + }, + UserTarifEdge?: Omit & { + keyFields?: false | UserTarifEdgeKeySpecifier | (() => undefined | UserTarifEdgeKeySpecifier), + fields?: UserTarifEdgeFieldPolicy, + }, + UserTarifPreviousValues?: Omit & { + keyFields?: false | UserTarifPreviousValuesKeySpecifier | (() => undefined | UserTarifPreviousValuesKeySpecifier), + fields?: UserTarifPreviousValuesFieldPolicy, + }, + UserTarifSubscriptionPayload?: Omit & { + keyFields?: false | UserTarifSubscriptionPayloadKeySpecifier | (() => undefined | UserTarifSubscriptionPayloadKeySpecifier), + fields?: UserTarifSubscriptionPayloadFieldPolicy, + }, VotePreviousValues?: Omit & { keyFields?: false | VotePreviousValuesKeySpecifier | (() => undefined | VotePreviousValuesKeySpecifier), fields?: VotePreviousValuesFieldPolicy, @@ -5357,24 +3795,84 @@ export type TypedTypePolicies = TypePolicies & { keyFields?: false | VoteSubscriptionPayloadKeySpecifier | (() => undefined | VoteSubscriptionPayloadKeySpecifier), fields?: VoteSubscriptionPayloadFieldPolicy, }, - MarketplaceAuthResponse?: Omit & { - keyFields?: false | MarketplaceAuthResponseKeySpecifier | (() => undefined | MarketplaceAuthResponseKeySpecifier), - fields?: MarketplaceAuthResponseFieldPolicy, + FileResponse?: Omit & { + keyFields?: false | FileResponseKeySpecifier | (() => undefined | FileResponseKeySpecifier), + fields?: FileResponseFieldPolicy, + }, + RouteResponse?: Omit & { + keyFields?: false | RouteResponseKeySpecifier | (() => undefined | RouteResponseKeySpecifier), + fields?: RouteResponseFieldPolicy, + }, + SmsMessageResponse?: Omit & { + keyFields?: false | SmsMessageResponseKeySpecifier | (() => undefined | SmsMessageResponseKeySpecifier), + fields?: SmsMessageResponseFieldPolicy, + }, + SmsProviderResponse?: Omit & { + keyFields?: false | SmsProviderResponseKeySpecifier | (() => undefined | SmsProviderResponseKeySpecifier), + fields?: SmsProviderResponseFieldPolicy, + }, + EthAccountResponse?: Omit & { + keyFields?: false | EthAccountResponseKeySpecifier | (() => undefined | EthAccountResponseKeySpecifier), + fields?: EthAccountResponseFieldPolicy, }, EthBlockResponse?: Omit & { keyFields?: false | EthBlockResponseKeySpecifier | (() => undefined | EthBlockResponseKeySpecifier), fields?: EthBlockResponseFieldPolicy, }, + EthContractSourceResponse?: Omit & { + keyFields?: false | EthContractSourceResponseKeySpecifier | (() => undefined | EthContractSourceResponseKeySpecifier), + fields?: EthContractSourceResponseFieldPolicy, + }, EthPersonalAccountResponse?: Omit & { keyFields?: false | EthPersonalAccountResponseKeySpecifier | (() => undefined | EthPersonalAccountResponseKeySpecifier), fields?: EthPersonalAccountResponseFieldPolicy, }, + EthTransactionResponse?: Omit & { + keyFields?: false | EthTransactionResponseKeySpecifier | (() => undefined | EthTransactionResponseKeySpecifier), + fields?: EthTransactionResponseFieldPolicy, + }, + ResourceResponse?: Omit & { + keyFields?: false | ResourceResponseKeySpecifier | (() => undefined | ResourceResponseKeySpecifier), + fields?: ResourceResponseFieldPolicy, + }, + ChatMessageResponse?: Omit & { + keyFields?: false | ChatMessageResponseKeySpecifier | (() => undefined | ChatMessageResponseKeySpecifier), + fields?: ChatMessageResponseFieldPolicy, + }, + ChatMessageReadedResponse?: Omit & { + keyFields?: false | ChatMessageReadedResponseKeySpecifier | (() => undefined | ChatMessageReadedResponseKeySpecifier), + fields?: ChatMessageReadedResponseFieldPolicy, + }, + ChatRoomResponse?: Omit & { + keyFields?: false | ChatRoomResponseKeySpecifier | (() => undefined | ChatRoomResponseKeySpecifier), + fields?: ChatRoomResponseFieldPolicy, + }, + GameResponse?: Omit & { + keyFields?: false | GameResponseKeySpecifier | (() => undefined | GameResponseKeySpecifier), + fields?: GameResponseFieldPolicy, + }, + GameResultResponse?: Omit & { + keyFields?: false | GameResultResponseKeySpecifier | (() => undefined | GameResultResponseKeySpecifier), + fields?: GameResultResponseFieldPolicy, + }, + TournamentResponse?: Omit & { + keyFields?: false | TournamentResponseKeySpecifier | (() => undefined | TournamentResponseKeySpecifier), + fields?: TournamentResponseFieldPolicy, + }, + TournamentGroupResponse?: Omit & { + keyFields?: false | TournamentGroupResponseKeySpecifier | (() => undefined | TournamentGroupResponseKeySpecifier), + fields?: TournamentGroupResponseFieldPolicy, + }, + TourneyResponse?: Omit & { + keyFields?: false | TourneyResponseKeySpecifier | (() => undefined | TourneyResponseKeySpecifier), + fields?: TourneyResponseFieldPolicy, + }, + CallRequestResponse?: Omit & { + keyFields?: false | CallRequestResponseKeySpecifier | (() => undefined | CallRequestResponseKeySpecifier), + fields?: CallRequestResponseFieldPolicy, + }, IceCandidate?: Omit & { keyFields?: false | IceCandidateKeySpecifier | (() => undefined | IceCandidateKeySpecifier), fields?: IceCandidateFieldPolicy, - }, - ServiceCategoryResponse?: Omit & { - keyFields?: false | ServiceCategoryResponseKeySpecifier | (() => undefined | ServiceCategoryResponseKeySpecifier), - fields?: ServiceCategoryResponseFieldPolicy, } }; \ No newline at end of file diff --git a/src/modules/gql/generated/index.ts b/src/modules/gql/generated/index.ts new file mode 100644 index 0000000..038fc04 --- /dev/null +++ b/src/modules/gql/generated/index.ts @@ -0,0 +1,3 @@ +export * from './beer'; +export * from './beers'; +export * from './place';export * from './types'; diff --git a/src/modules/gql/generated/place.ts b/src/modules/gql/generated/place.ts new file mode 100644 index 0000000..d5c4761 --- /dev/null +++ b/src/modules/gql/generated/place.ts @@ -0,0 +1,20 @@ +/* eslint-disable */ + +/** +* ФАЙЛ ГЕНЕРИРУЕТСЯ АВТОМАТИЧЕСКИ, ПРАВИТЬ ЕГО НЕ НУЖНО +* Команда для генерирования этого файла: "yarn generate:types" +*/ + + +import * as Types from './types'; + +import { gql } from '@apollo/client'; +export type PlaceFragment = { __typename?: 'Place', id: string, name: string, uri?: Types.Maybe }; + +export const PlaceFragmentDoc = gql` + fragment place on Place { + id + name + uri +} + `; \ No newline at end of file diff --git a/src/modules/gql/generated/schema.json b/src/modules/gql/generated/schema.json index 5c67147..0c98bbe 100644 --- a/src/modules/gql/generated/schema.json +++ b/src/modules/gql/generated/schema.json @@ -16,23 +16,19 @@ "description": null, "fields": [ { - "name": "apiSchema", - "description": "Client api schema for @prisma-cms/front", + "name": "me", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "User", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "galleries", + "name": "mapPlacesConnection", "description": null, "args": [ { @@ -40,7 +36,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "GalleryWhereInput", + "name": "PlaceWhereInput", "ofType": null }, "defaultValue": null @@ -50,7 +46,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "GalleryOrderByInput", + "name": "PlaceOrderByInput", "ofType": null }, "defaultValue": null @@ -104,26 +100,161 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "center", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CoordsInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "PlaceType", + "ofType": null + } + } + }, + "defaultValue": null } ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Gallery", + "kind": "OBJECT", + "name": "MapPlaceConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mapGeoObjectsConnection", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null - } + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PlaceWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "beerWhere", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BeerWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "PlaceOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "center", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CoordsInput", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "mapGeoObjectsConnection", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "userGroups", + "name": "routes", "description": null, "args": [ { @@ -131,7 +262,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserGroupWhereInput", + "name": "RouteWhereInput", "ofType": null }, "defaultValue": null @@ -141,7 +272,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "UserGroupOrderByInput", + "name": "RouteOrderByInput", "ofType": null }, "defaultValue": null @@ -205,7 +336,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UserGroup", + "name": "Route", "ofType": null } } @@ -214,7 +345,7 @@ "deprecationReason": null }, { - "name": "worlds", + "name": "userGroups", "description": null, "args": [ { @@ -222,7 +353,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "WorldWhereInput", + "name": "UserGroupWhereInput", "ofType": null }, "defaultValue": null @@ -232,7 +363,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "WorldOrderByInput", + "name": "UserGroupOrderByInput", "ofType": null }, "defaultValue": null @@ -296,7 +427,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "World", + "name": "UserGroup", "ofType": null } } @@ -305,7 +436,7 @@ "deprecationReason": null }, { - "name": "notices", + "name": "ethAccounts", "description": null, "args": [ { @@ -313,7 +444,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NoticeWhereInput", + "name": "EthAccountWhereInput", "ofType": null }, "defaultValue": null @@ -323,7 +454,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "NoticeOrderByInput", + "name": "EthAccountOrderByInput", "ofType": null }, "defaultValue": null @@ -387,7 +518,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Notice", + "name": "EthAccount", "ofType": null } } @@ -396,7 +527,7 @@ "deprecationReason": null }, { - "name": "notificationTypes", + "name": "ethTransactions", "description": null, "args": [ { @@ -404,7 +535,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NotificationTypeWhereInput", + "name": "EthTransactionWhereInput", "ofType": null }, "defaultValue": null @@ -414,7 +545,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "NotificationTypeOrderByInput", + "name": "EthTransactionOrderByInput", "ofType": null }, "defaultValue": null @@ -478,7 +609,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "NotificationType", + "name": "EthTransaction", "ofType": null } } @@ -487,7 +618,7 @@ "deprecationReason": null }, { - "name": "resourceTags", + "name": "resources", "description": null, "args": [ { @@ -495,7 +626,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereInput", + "name": "ResourceWhereInput", "ofType": null }, "defaultValue": null @@ -505,7 +636,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "ResourceTagOrderByInput", + "name": "ResourceOrderByInput", "ofType": null }, "defaultValue": null @@ -569,7 +700,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ResourceTag", + "name": "Resource", "ofType": null } } @@ -578,7 +709,7 @@ "deprecationReason": null }, { - "name": "tags", + "name": "chatRooms", "description": null, "args": [ { @@ -586,7 +717,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TagWhereInput", + "name": "ChatRoomWhereInput", "ofType": null }, "defaultValue": null @@ -596,7 +727,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "TagOrderByInput", + "name": "ChatRoomOrderByInput", "ofType": null }, "defaultValue": null @@ -660,7 +791,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Tag", + "name": "ChatRoom", "ofType": null } } @@ -669,7 +800,7 @@ "deprecationReason": null }, { - "name": "votes", + "name": "notices", "description": null, "args": [ { @@ -677,7 +808,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "VoteWhereInput", + "name": "NoticeWhereInput", "ofType": null }, "defaultValue": null @@ -687,7 +818,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "VoteOrderByInput", + "name": "NoticeOrderByInput", "ofType": null }, "defaultValue": null @@ -751,7 +882,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Vote", + "name": "Notice", "ofType": null } } @@ -760,7 +891,7 @@ "deprecationReason": null }, { - "name": "chatRooms", + "name": "notificationTypes", "description": null, "args": [ { @@ -768,7 +899,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereInput", + "name": "NotificationTypeWhereInput", "ofType": null }, "defaultValue": null @@ -778,7 +909,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "ChatRoomOrderByInput", + "name": "NotificationTypeOrderByInput", "ofType": null }, "defaultValue": null @@ -842,7 +973,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChatRoom", + "name": "NotificationType", "ofType": null } } @@ -851,7 +982,7 @@ "deprecationReason": null }, { - "name": "games", + "name": "resourceTags", "description": null, "args": [ { @@ -859,7 +990,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "GameWhereInput", + "name": "ResourceTagWhereInput", "ofType": null }, "defaultValue": null @@ -869,7 +1000,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "GameOrderByInput", + "name": "ResourceTagOrderByInput", "ofType": null }, "defaultValue": null @@ -933,7 +1064,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Game", + "name": "ResourceTag", "ofType": null } } @@ -942,7 +1073,7 @@ "deprecationReason": null }, { - "name": "gameResults", + "name": "tags", "description": null, "args": [ { @@ -950,7 +1081,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "GameResultWhereInput", + "name": "TagWhereInput", "ofType": null }, "defaultValue": null @@ -960,7 +1091,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "GameResultOrderByInput", + "name": "TagOrderByInput", "ofType": null }, "defaultValue": null @@ -1024,7 +1155,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "GameResult", + "name": "Tag", "ofType": null } } @@ -1033,7 +1164,7 @@ "deprecationReason": null }, { - "name": "tournaments", + "name": "games", "description": null, "args": [ { @@ -1041,7 +1172,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TournamentWhereInput", + "name": "GameWhereInput", "ofType": null }, "defaultValue": null @@ -1051,7 +1182,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "TournamentOrderByInput", + "name": "GameOrderByInput", "ofType": null }, "defaultValue": null @@ -1115,7 +1246,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Tournament", + "name": "Game", "ofType": null } } @@ -1124,7 +1255,7 @@ "deprecationReason": null }, { - "name": "tournamentGroups", + "name": "gameResults", "description": null, "args": [ { @@ -1132,7 +1263,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TournamentGroupWhereInput", + "name": "GameResultWhereInput", "ofType": null }, "defaultValue": null @@ -1142,7 +1273,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "TournamentGroupOrderByInput", + "name": "GameResultOrderByInput", "ofType": null }, "defaultValue": null @@ -1206,7 +1337,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "TournamentGroup", + "name": "GameResult", "ofType": null } } @@ -1215,7 +1346,7 @@ "deprecationReason": null }, { - "name": "tourneys", + "name": "tournaments", "description": null, "args": [ { @@ -1223,7 +1354,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TourneyWhereInput", + "name": "TournamentWhereInput", "ofType": null }, "defaultValue": null @@ -1233,7 +1364,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "TourneyOrderByInput", + "name": "TournamentOrderByInput", "ofType": null }, "defaultValue": null @@ -1297,7 +1428,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Tourney", + "name": "Tournament", "ofType": null } } @@ -1306,7 +1437,7 @@ "deprecationReason": null }, { - "name": "ethAccounts", + "name": "tournamentGroups", "description": null, "args": [ { @@ -1314,7 +1445,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountWhereInput", + "name": "TournamentGroupWhereInput", "ofType": null }, "defaultValue": null @@ -1324,7 +1455,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "EthAccountOrderByInput", + "name": "TournamentGroupOrderByInput", "ofType": null }, "defaultValue": null @@ -1388,7 +1519,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EthAccount", + "name": "TournamentGroup", "ofType": null } } @@ -1397,7 +1528,7 @@ "deprecationReason": null }, { - "name": "ethContractSources", + "name": "tourneys", "description": null, "args": [ { @@ -1405,7 +1536,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthContractSourceWhereInput", + "name": "TourneyWhereInput", "ofType": null }, "defaultValue": null @@ -1415,7 +1546,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "EthContractSourceOrderByInput", + "name": "TourneyOrderByInput", "ofType": null }, "defaultValue": null @@ -1479,7 +1610,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EthContractSource", + "name": "Tourney", "ofType": null } } @@ -1488,7 +1619,7 @@ "deprecationReason": null }, { - "name": "ethTransactions", + "name": "votes", "description": null, "args": [ { @@ -1496,7 +1627,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereInput", + "name": "VoteWhereInput", "ofType": null }, "defaultValue": null @@ -1506,7 +1637,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "EthTransactionOrderByInput", + "name": "VoteOrderByInput", "ofType": null }, "defaultValue": null @@ -1570,7 +1701,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EthTransaction", + "name": "Vote", "ofType": null } } @@ -1670,7 +1801,7 @@ "deprecationReason": null }, { - "name": "positions", + "name": "beers", "description": null, "args": [ { @@ -1678,7 +1809,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionWhereInput", + "name": "BeerWhereInput", "ofType": null }, "defaultValue": null @@ -1688,7 +1819,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PositionOrderByInput", + "name": "BeerOrderByInput", "ofType": null }, "defaultValue": null @@ -1752,7 +1883,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Position", + "name": "Beer", "ofType": null } } @@ -1761,7 +1892,7 @@ "deprecationReason": null }, { - "name": "projectMembers", + "name": "userTarifs", "description": null, "args": [ { @@ -1769,7 +1900,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereInput", + "name": "UserTarifWhereInput", "ofType": null }, "defaultValue": null @@ -1779,7 +1910,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "ProjectMemberOrderByInput", + "name": "UserTarifOrderByInput", "ofType": null }, "defaultValue": null @@ -1843,7 +1974,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectMember", + "name": "UserTarif", "ofType": null } } @@ -1852,7 +1983,7 @@ "deprecationReason": null }, { - "name": "services", + "name": "cities", "description": null, "args": [ { @@ -1860,7 +1991,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ServiceWhereInput", + "name": "CityWhereInput", "ofType": null }, "defaultValue": null @@ -1870,7 +2001,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "ServiceOrderByInput", + "name": "CityOrderByInput", "ofType": null }, "defaultValue": null @@ -1934,7 +2065,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Service", + "name": "City", "ofType": null } } @@ -1943,7 +2074,7 @@ "deprecationReason": null }, { - "name": "tasks", + "name": "comments", "description": null, "args": [ { @@ -1951,7 +2082,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskWhereInput", + "name": "CommentWhereInput", "ofType": null }, "defaultValue": null @@ -1961,7 +2092,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "TaskOrderByInput", + "name": "CommentOrderByInput", "ofType": null }, "defaultValue": null @@ -2025,7 +2156,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Task", + "name": "Comment", "ofType": null } } @@ -2034,7 +2165,7 @@ "deprecationReason": null }, { - "name": "taskReactions", + "name": "places", "description": null, "args": [ { @@ -2042,7 +2173,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskReactionWhereInput", + "name": "PlaceWhereInput", "ofType": null }, "defaultValue": null @@ -2052,7 +2183,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "TaskReactionOrderByInput", + "name": "PlaceOrderByInput", "ofType": null }, "defaultValue": null @@ -2116,7 +2247,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "TaskReaction", + "name": "Place", "ofType": null } } @@ -2125,7 +2256,7 @@ "deprecationReason": null }, { - "name": "teamMembers", + "name": "tarifs", "description": null, "args": [ { @@ -2133,7 +2264,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamMemberWhereInput", + "name": "TarifWhereInput", "ofType": null }, "defaultValue": null @@ -2143,7 +2274,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "TeamMemberOrderByInput", + "name": "TarifOrderByInput", "ofType": null }, "defaultValue": null @@ -2207,7 +2338,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "TeamMember", + "name": "Tarif", "ofType": null } } @@ -2216,7 +2347,7 @@ "deprecationReason": null }, { - "name": "timers", + "name": "ethBlocks", "description": null, "args": [ { @@ -2224,7 +2355,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TimerWhereInput", + "name": "EthBlockWhereInput", "ofType": null }, "defaultValue": null @@ -2234,7 +2365,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "TimerOrderByInput", + "name": "EthBlockOrderByInput", "ofType": null }, "defaultValue": null @@ -2298,7 +2429,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Timer", + "name": "EthBlock", "ofType": null } } @@ -2307,7 +2438,7 @@ "deprecationReason": null }, { - "name": "routes", + "name": "ethContractSources", "description": null, "args": [ { @@ -2315,7 +2446,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "RouteWhereInput", + "name": "EthContractSourceWhereInput", "ofType": null }, "defaultValue": null @@ -2325,7 +2456,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "RouteOrderByInput", + "name": "EthContractSourceOrderByInput", "ofType": null }, "defaultValue": null @@ -2389,7 +2520,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Route", + "name": "EthContractSource", "ofType": null } } @@ -2398,7 +2529,7 @@ "deprecationReason": null }, { - "name": "codeChallenges", + "name": "users", "description": null, "args": [ { @@ -2406,7 +2537,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeWhereInput", + "name": "UserWhereInput", "ofType": null }, "defaultValue": null @@ -2416,7 +2547,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "CodeChallengeOrderByInput", + "name": "UserOrderByInput", "ofType": null }, "defaultValue": null @@ -2480,7 +2611,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CodeChallenge", + "name": "User", "ofType": null } } @@ -2489,7 +2620,7 @@ "deprecationReason": null }, { - "name": "codeChallengeBlocks", + "name": "chatMessages", "description": null, "args": [ { @@ -2497,7 +2628,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockWhereInput", + "name": "ChatMessageWhereInput", "ofType": null }, "defaultValue": null @@ -2507,7 +2638,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "CodeChallengeBlockOrderByInput", + "name": "ChatMessageOrderByInput", "ofType": null }, "defaultValue": null @@ -2571,7 +2702,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CodeChallengeBlock", + "name": "ChatMessage", "ofType": null } } @@ -2580,280 +2711,682 @@ "deprecationReason": null }, { - "name": "codeChallengeCompletions", + "name": "route", "description": null, "args": [ { "name": "where", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionWhereInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RouteWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "Route", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ethAccount", + "description": null, + "args": [ { - "name": "orderBy", + "name": "where", "description": null, "type": { - "kind": "ENUM", - "name": "CodeChallengeCompletionOrderByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthAccountWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "EthAccount", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ethTransaction", + "description": null, + "args": [ { - "name": "skip", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthTransactionWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "EthTransaction", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "resource", + "description": null, + "args": [ { - "name": "after", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "Resource", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "chatMessageReaded", + "description": null, + "args": [ { - "name": "before", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "ChatMessageReaded", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "chatRoom", + "description": null, + "args": [ { - "name": "first", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "ChatRoom", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "notice", + "description": null, + "args": [ { - "name": "last", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NoticeWhereUniqueInput", + "ofType": null + } }, "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CodeChallengeCompletion", - "ofType": null - } + "kind": "OBJECT", + "name": "Notice", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "notificationType", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotificationTypeWhereUniqueInput", + "ofType": null + } + }, + "defaultValue": null } + ], + "type": { + "kind": "OBJECT", + "name": "NotificationType", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "comments", + "name": "resourceTag", "description": null, "args": [ { "name": "where", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CommentWhereInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceTagWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "ResourceTag", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tag", + "description": null, + "args": [ { - "name": "orderBy", + "name": "where", "description": null, "type": { - "kind": "ENUM", - "name": "CommentOrderByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TagWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "Tag", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "game", + "description": null, + "args": [ { - "name": "skip", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GameWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "Game", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gameResult", + "description": null, + "args": [ { - "name": "after", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GameResultWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "GameResult", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tournament", + "description": null, + "args": [ { - "name": "before", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TournamentWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "Tournament", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tournamentGroup", + "description": null, + "args": [ { - "name": "first", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TournamentGroupWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "TournamentGroup", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tourney", + "description": null, + "args": [ { - "name": "last", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TourneyWhereUniqueInput", + "ofType": null + } }, "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Comment", - "ofType": null - } + "kind": "OBJECT", + "name": "Tourney", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "vote", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "VoteWhereUniqueInput", + "ofType": null + } + }, + "defaultValue": null } + ], + "type": { + "kind": "OBJECT", + "name": "Vote", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "technologyLessons", + "name": "beer", "description": null, "args": [ { "name": "where", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonWhereInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BeerWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "Beer", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "city", + "description": null, + "args": [ { - "name": "orderBy", + "name": "where", "description": null, "type": { - "kind": "ENUM", - "name": "TechnologyLessonOrderByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CityWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "City", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "comment", + "description": null, + "args": [ { - "name": "skip", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CommentWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "Comment", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "place", + "description": null, + "args": [ { - "name": "after", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PlaceWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "Place", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "topic", + "description": null, + "args": [ { - "name": "before", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TopicWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "Topic", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ethBlock", + "description": null, + "args": [ { - "name": "first", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthBlockWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "EthBlock", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ethContractSource", + "description": null, + "args": [ { - "name": "last", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthContractSourceWhereUniqueInput", + "ofType": null + } }, "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TechnologyLesson", - "ofType": null - } + "kind": "OBJECT", + "name": "EthContractSource", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "chatMessage", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageWhereUniqueInput", + "ofType": null + } + }, + "defaultValue": null } + ], + "type": { + "kind": "OBJECT", + "name": "ChatMessage", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "careers", + "name": "routesConnection", "description": null, "args": [ { @@ -2861,7 +3394,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CareerWhereInput", + "name": "RouteWhereInput", "ofType": null }, "defaultValue": null @@ -2871,7 +3404,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "CareerOrderByInput", + "name": "RouteOrderByInput", "ofType": null }, "defaultValue": null @@ -2931,20 +3464,16 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Career", - "ofType": null - } + "kind": "OBJECT", + "name": "RouteConnection", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "technologyLessonUsers", + "name": "ethAccountsConnection", "description": null, "args": [ { @@ -2952,7 +3481,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserWhereInput", + "name": "EthAccountWhereInput", "ofType": null }, "defaultValue": null @@ -2962,7 +3491,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "TechnologyLessonUserOrderByInput", + "name": "EthAccountOrderByInput", "ofType": null }, "defaultValue": null @@ -3022,20 +3551,16 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TechnologyLessonUser", - "ofType": null - } + "kind": "OBJECT", + "name": "EthAccountConnection", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "userTechnologies", + "name": "ethTransactionsConnection", "description": null, "args": [ { @@ -3043,7 +3568,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserTechnologyWhereInput", + "name": "EthTransactionWhereInput", "ofType": null }, "defaultValue": null @@ -3053,7 +3578,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "UserTechnologyOrderByInput", + "name": "EthTransactionOrderByInput", "ofType": null }, "defaultValue": null @@ -3113,20 +3638,16 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UserTechnology", - "ofType": null - } + "kind": "OBJECT", + "name": "EthTransactionConnection", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "tests", + "name": "resourcesConnection", "description": null, "args": [ { @@ -3134,7 +3655,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TestWhereInput", + "name": "ResourceWhereInput", "ofType": null }, "defaultValue": null @@ -3144,7 +3665,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "TestOrderByInput", + "name": "ResourceOrderByInput", "ofType": null }, "defaultValue": null @@ -3204,20 +3725,16 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Test", - "ofType": null - } + "kind": "OBJECT", + "name": "ResourceConnection", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "technologies", + "name": "chatMessageReadedsConnection", "description": null, "args": [ { @@ -3225,7 +3742,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TechnologyWhereInput", + "name": "ChatMessageReadedWhereInput", "ofType": null }, "defaultValue": null @@ -3235,7 +3752,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "TechnologyOrderByInput", + "name": "ChatMessageReadedOrderByInput", "ofType": null }, "defaultValue": null @@ -3295,20 +3812,16 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Technology", - "ofType": null - } + "kind": "OBJECT", + "name": "ChatMessageReadedConnection", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ethBlocks", + "name": "chatRoomsConnection", "description": null, "args": [ { @@ -3316,7 +3829,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthBlockWhereInput", + "name": "ChatRoomWhereInput", "ofType": null }, "defaultValue": null @@ -3326,7 +3839,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "EthBlockOrderByInput", + "name": "ChatRoomOrderByInput", "ofType": null }, "defaultValue": null @@ -3386,20 +3899,103 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EthBlock", + "kind": "OBJECT", + "name": "ChatRoomConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "noticesConnection", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NoticeWhereInput", "ofType": null - } + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "NoticeOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "NoticeConnection", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "teams", + "name": "notificationTypesConnection", "description": null, "args": [ { @@ -3407,7 +4003,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamWhereInput", + "name": "NotificationTypeWhereInput", "ofType": null }, "defaultValue": null @@ -3417,7 +4013,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "TeamOrderByInput", + "name": "NotificationTypeOrderByInput", "ofType": null }, "defaultValue": null @@ -3477,20 +4073,103 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Team", + "kind": "OBJECT", + "name": "NotificationTypeConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "resourceTagsConnection", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceTagWhereInput", "ofType": null - } + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "ResourceTagOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceTagConnection", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "projects", + "name": "tagsConnection", "description": null, "args": [ { @@ -3498,7 +4177,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectWhereInput", + "name": "TagWhereInput", "ofType": null }, "defaultValue": null @@ -3508,7 +4187,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "ProjectOrderByInput", + "name": "TagOrderByInput", "ofType": null }, "defaultValue": null @@ -3568,20 +4247,16 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - } + "kind": "OBJECT", + "name": "TagConnection", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "templates", + "name": "gamesConnection", "description": null, "args": [ { @@ -3589,7 +4264,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TemplateWhereInput", + "name": "GameWhereInput", "ofType": null }, "defaultValue": null @@ -3599,7 +4274,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "TemplateOrderByInput", + "name": "GameOrderByInput", "ofType": null }, "defaultValue": null @@ -3659,20 +4334,16 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Template", - "ofType": null - } + "kind": "OBJECT", + "name": "GameConnection", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "resources", + "name": "gameResultsConnection", "description": null, "args": [ { @@ -3680,7 +4351,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", + "name": "GameResultWhereInput", "ofType": null }, "defaultValue": null @@ -3690,7 +4361,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "ResourceOrderByInput", + "name": "GameResultOrderByInput", "ofType": null }, "defaultValue": null @@ -3750,20 +4421,16 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Resource", - "ofType": null - } + "kind": "OBJECT", + "name": "GameResultConnection", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "chatMessages", + "name": "tournamentsConnection", "description": null, "args": [ { @@ -3771,7 +4438,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageWhereInput", + "name": "TournamentWhereInput", "ofType": null }, "defaultValue": null @@ -3781,7 +4448,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "ChatMessageOrderByInput", + "name": "TournamentOrderByInput", "ofType": null }, "defaultValue": null @@ -3841,20 +4508,16 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChatMessage", - "ofType": null - } + "kind": "OBJECT", + "name": "TournamentConnection", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "users", + "name": "tournamentGroupsConnection", "description": null, "args": [ { @@ -3862,7 +4525,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserWhereInput", + "name": "TournamentGroupWhereInput", "ofType": null }, "defaultValue": null @@ -3872,7 +4535,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "UserOrderByInput", + "name": "TournamentGroupOrderByInput", "ofType": null }, "defaultValue": null @@ -3932,1163 +4595,547 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } + "kind": "OBJECT", + "name": "TournamentGroupConnection", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "gallery", + "name": "tourneysConnection", "description": null, "args": [ { "name": "where", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GalleryWhereUniqueInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "TourneyWhereInput", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Gallery", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "world", - "description": null, - "args": [ + }, { - "name": "where", + "name": "orderBy", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WorldWhereUniqueInput", - "ofType": null - } + "kind": "ENUM", + "name": "TourneyOrderByInput", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "World", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notice", - "description": null, - "args": [ + }, { - "name": "where", + "name": "skip", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NoticeWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Notice", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notificationType", - "description": null, - "args": [ + }, { - "name": "where", + "name": "after", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "NotificationType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "resourceTag", - "description": null, - "args": [ + }, { - "name": "where", + "name": "before", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ResourceTag", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tag", - "description": null, - "args": [ + }, { - "name": "where", + "name": "first", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TagWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Tag", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "vote", - "description": null, - "args": [ + }, { - "name": "where", + "name": "last", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "VoteWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "Vote", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TourneyConnection", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "chatRoom", + "name": "votesConnection", "description": null, "args": [ { "name": "where", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereUniqueInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "VoteWhereInput", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ChatRoom", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "game", - "description": null, - "args": [ + }, { - "name": "where", + "name": "orderBy", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameWhereUniqueInput", - "ofType": null - } + "kind": "ENUM", + "name": "VoteOrderByInput", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Game", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gameResult", - "description": null, - "args": [ + }, { - "name": "where", + "name": "skip", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameResultWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "GameResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tournament", - "description": null, - "args": [ + }, { - "name": "where", + "name": "after", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TournamentWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Tournament", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tournamentGroup", - "description": null, - "args": [ + }, { - "name": "where", + "name": "before", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TournamentGroupWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "TournamentGroup", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tourney", - "description": null, - "args": [ + }, { - "name": "where", + "name": "first", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Tourney", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ethAccount", - "description": null, - "args": [ + }, { - "name": "where", + "name": "last", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "EthAccount", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "VoteConnection", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ethContractSource", + "name": "callRequestsConnection", "description": null, "args": [ { "name": "where", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceWhereUniqueInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "CallRequestWhereInput", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "EthContractSource", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ethTransaction", - "description": null, - "args": [ + }, { - "name": "where", + "name": "orderBy", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereUniqueInput", - "ofType": null - } + "kind": "ENUM", + "name": "CallRequestOrderByInput", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "EthTransaction", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "position", - "description": null, - "args": [ + }, { - "name": "where", + "name": "skip", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PositionWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Position", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectMember", - "description": null, - "args": [ + }, { - "name": "where", + "name": "after", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectMember", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "service", - "description": null, - "args": [ + }, { - "name": "where", + "name": "before", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Service", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "task", - "description": null, - "args": [ + }, { - "name": "where", + "name": "first", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Task", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "taskReaction", - "description": null, - "args": [ + }, { - "name": "where", + "name": "last", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "TaskReaction", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CallRequestConnection", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "teamMember", + "name": "beersConnection", "description": null, "args": [ { "name": "where", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberWhereUniqueInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "BeerWhereInput", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "TeamMember", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timer", - "description": null, - "args": [ + }, { - "name": "where", + "name": "orderBy", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TimerWhereUniqueInput", - "ofType": null - } + "kind": "ENUM", + "name": "BeerOrderByInput", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Timer", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "route", - "description": null, - "args": [ + }, { - "name": "where", + "name": "skip", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RouteWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Route", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "codeChallenge", - "description": null, - "args": [ + }, { - "name": "where", + "name": "after", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CodeChallenge", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "codeChallengeBlock", - "description": null, - "args": [ + }, { - "name": "where", + "name": "before", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CodeChallengeBlock", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "codeChallengeCompletion", - "description": null, - "args": [ + }, { - "name": "where", + "name": "first", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CodeChallengeCompletion", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "comment", - "description": null, - "args": [ + }, { - "name": "where", + "name": "last", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CommentWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "Comment", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BeerConnection", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "technologyLesson", + "name": "commentsConnection", "description": null, "args": [ { "name": "where", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonWhereUniqueInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "CommentWhereInput", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "TechnologyLesson", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "career", - "description": null, - "args": [ + }, { - "name": "where", + "name": "orderBy", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CareerWhereUniqueInput", - "ofType": null - } + "kind": "ENUM", + "name": "CommentOrderByInput", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Career", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "technologyLessonUser", - "description": null, - "args": [ + }, { - "name": "where", + "name": "skip", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "TechnologyLessonUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userTechnology", - "description": null, - "args": [ + }, { - "name": "where", + "name": "after", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "UserTechnology", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "test", - "description": null, - "args": [ + }, { - "name": "where", + "name": "before", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TestWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Test", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "file", - "description": null, - "args": [ + }, { - "name": "where", + "name": "first", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "File", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "technology", - "description": null, - "args": [ + }, { - "name": "where", + "name": "last", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "Technology", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CommentConnection", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ethBlock", + "name": "placesConnection", "description": null, "args": [ { "name": "where", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthBlockWhereUniqueInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "PlaceWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "PlaceOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "EthBlock", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PlaceConnection", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team", + "name": "topicsConnection", "description": null, "args": [ { "name": "where", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "project", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "template", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TemplateWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Template", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "resource", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Resource", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "chatMessage", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ChatMessage", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "galleriesConnection", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GalleryWhereInput", - "ofType": null + "kind": "INPUT_OBJECT", + "name": "TopicWhereInput", + "ofType": null }, "defaultValue": null }, @@ -5097,7 +5144,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "GalleryOrderByInput", + "name": "TopicOrderByInput", "ofType": null }, "defaultValue": null @@ -5158,7 +5205,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "GalleryConnection", + "name": "TopicConnection", "ofType": null } }, @@ -5166,7 +5213,7 @@ "deprecationReason": null }, { - "name": "worldsConnection", + "name": "ethBlocksConnection", "description": null, "args": [ { @@ -5174,7 +5221,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "WorldWhereInput", + "name": "EthBlockWhereInput", "ofType": null }, "defaultValue": null @@ -5184,7 +5231,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "WorldOrderByInput", + "name": "EthBlockOrderByInput", "ofType": null }, "defaultValue": null @@ -5245,7 +5292,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "WorldConnection", + "name": "EthBlockConnection", "ofType": null } }, @@ -5253,7 +5300,7 @@ "deprecationReason": null }, { - "name": "noticesConnection", + "name": "ethContractSourcesConnection", "description": null, "args": [ { @@ -5261,7 +5308,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NoticeWhereInput", + "name": "EthContractSourceWhereInput", "ofType": null }, "defaultValue": null @@ -5271,7 +5318,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "NoticeOrderByInput", + "name": "EthContractSourceOrderByInput", "ofType": null }, "defaultValue": null @@ -5332,7 +5379,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "NoticeConnection", + "name": "EthContractSourceConnection", "ofType": null } }, @@ -5340,7 +5387,7 @@ "deprecationReason": null }, { - "name": "notificationTypesConnection", + "name": "usersConnection", "description": null, "args": [ { @@ -5348,7 +5395,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NotificationTypeWhereInput", + "name": "UserWhereInput", "ofType": null }, "defaultValue": null @@ -5358,7 +5405,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "NotificationTypeOrderByInput", + "name": "UserOrderByInput", "ofType": null }, "defaultValue": null @@ -5419,7 +5466,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "NotificationTypeConnection", + "name": "UserConnection", "ofType": null } }, @@ -5427,7 +5474,7 @@ "deprecationReason": null }, { - "name": "resourceTagsConnection", + "name": "chatMessagesConnection", "description": null, "args": [ { @@ -5435,7 +5482,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereInput", + "name": "ChatMessageWhereInput", "ofType": null }, "defaultValue": null @@ -5445,7 +5492,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "ResourceTagOrderByInput", + "name": "ChatMessageOrderByInput", "ofType": null }, "defaultValue": null @@ -5506,7 +5553,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ResourceTagConnection", + "name": "ChatMessageConnection", "ofType": null } }, @@ -5514,86 +5561,302 @@ "deprecationReason": null }, { - "name": "tagsConnection", + "name": "ethNet", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ethNet", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ethCoinbase", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "EthAccount", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ethPersonalAccounts", "description": null, "args": [ { "name": "where", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagWhereInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EthPersonalAccount", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ethBalance", + "description": null, + "args": [ { - "name": "orderBy", + "name": "address", "description": null, "type": { - "kind": "ENUM", - "name": "TagOrderByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "skip", + "name": "convert", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "EthAmountConvert", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ethTransactionCount", + "description": null, + "args": [ { - "name": "after", + "name": "address", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ethSyncState", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ethSyncState", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ethGetBlockNumber", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ethGetBlock", + "description": null, + "args": [ { - "name": "before", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthGetBlockWhereInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "SCALAR", + "name": "Json", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ethGetBlockTransactionCount", + "description": null, + "args": [ { - "name": "first", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthGetBlockWhereInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ethGetTransaction", + "description": null, + "args": [ { - "name": "last", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthGetTransactionWhereInput", + "ofType": null + } }, "defaultValue": null } ], + "type": { + "kind": "SCALAR", + "name": "Json", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Int", + "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "String", + "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Boolean", + "description": "The `Boolean` scalar type represents `true` or `false`.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Float", + "description": "The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "User", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TagConnection", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -5601,7 +5864,183 @@ "deprecationReason": null }, { - "name": "votesConnection", + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "username", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "email", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "phone", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "showEmail", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "showPhone", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "password", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fullname", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "image", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "address", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "active", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "activated", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleted", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Groups", "description": null, "args": [ { @@ -5609,7 +6048,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "VoteWhereInput", + "name": "UserGroupWhereInput", "ofType": null }, "defaultValue": null @@ -5619,7 +6058,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "VoteOrderByInput", + "name": "UserGroupOrderByInput", "ofType": null }, "defaultValue": null @@ -5676,19 +6115,23 @@ } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "VoteConnection", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserGroup", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "chatRoomsConnection", + "name": "CreatedUsers", "description": null, "args": [ { @@ -5696,7 +6139,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereInput", + "name": "UserWhereInput", "ofType": null }, "defaultValue": null @@ -5706,7 +6149,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "ChatRoomOrderByInput", + "name": "UserOrderByInput", "ofType": null }, "defaultValue": null @@ -5763,19 +6206,23 @@ } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ChatRoomConnection", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "gamesConnection", + "name": "CreatedBy", "description": null, "args": [ { @@ -5783,7 +6230,30 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "GameWhereInput", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "LogedIns", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LogedInWhereInput", "ofType": null }, "defaultValue": null @@ -5793,7 +6263,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "GameOrderByInput", + "name": "LogedInOrderByInput", "ofType": null }, "defaultValue": null @@ -5850,19 +6320,23 @@ } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "GameConnection", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LogedIn", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "gameResultsConnection", + "name": "Files", "description": null, "args": [ { @@ -5870,7 +6344,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "GameResultWhereInput", + "name": "FileWhereInput", "ofType": null }, "defaultValue": null @@ -5880,7 +6354,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "GameResultOrderByInput", + "name": "FileOrderByInput", "ofType": null }, "defaultValue": null @@ -5937,19 +6411,35 @@ } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "GameResultConnection", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "File", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "tournamentsConnection", + "name": "hidden", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "EthContractSourcesCreated", "description": null, "args": [ { @@ -5957,7 +6447,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TournamentWhereInput", + "name": "EthContractSourceWhereInput", "ofType": null }, "defaultValue": null @@ -5967,7 +6457,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "TournamentOrderByInput", + "name": "EthContractSourceOrderByInput", "ofType": null }, "defaultValue": null @@ -6024,19 +6514,23 @@ } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TournamentConnection", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EthContractSource", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "tournamentGroupsConnection", + "name": "EthAccounts", "description": null, "args": [ { @@ -6044,7 +6538,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TournamentGroupWhereInput", + "name": "EthAccountWhereInput", "ofType": null }, "defaultValue": null @@ -6054,7 +6548,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "TournamentGroupOrderByInput", + "name": "EthAccountOrderByInput", "ofType": null }, "defaultValue": null @@ -6111,19 +6605,23 @@ } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TournamentGroupConnection", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EthAccount", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "tourneysConnection", + "name": "Resources", "description": null, "args": [ { @@ -6131,7 +6629,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TourneyWhereInput", + "name": "ResourceWhereInput", "ofType": null }, "defaultValue": null @@ -6141,7 +6639,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "TourneyOrderByInput", + "name": "ResourceOrderByInput", "ofType": null }, "defaultValue": null @@ -6198,19 +6696,23 @@ } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TourneyConnection", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Resource", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ethAccountsConnection", + "name": "Rooms", "description": null, "args": [ { @@ -6218,7 +6720,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountWhereInput", + "name": "ChatRoomWhereInput", "ofType": null }, "defaultValue": null @@ -6228,7 +6730,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "EthAccountOrderByInput", + "name": "ChatRoomOrderByInput", "ofType": null }, "defaultValue": null @@ -6285,19 +6787,23 @@ } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "EthAccountConnection", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChatRoom", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ethContractSourcesConnection", + "name": "CreatedRooms", "description": null, "args": [ { @@ -6305,7 +6811,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthContractSourceWhereInput", + "name": "ChatRoomWhereInput", "ofType": null }, "defaultValue": null @@ -6315,7 +6821,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "EthContractSourceOrderByInput", + "name": "ChatRoomOrderByInput", "ofType": null }, "defaultValue": null @@ -6372,19 +6878,23 @@ } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "EthContractSourceConnection", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChatRoom", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ethTransactionsConnection", + "name": "Messages", "description": null, "args": [ { @@ -6392,7 +6902,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereInput", + "name": "ChatMessageWhereInput", "ofType": null }, "defaultValue": null @@ -6402,7 +6912,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "EthTransactionOrderByInput", + "name": "ChatMessageOrderByInput", "ofType": null }, "defaultValue": null @@ -6459,19 +6969,23 @@ } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "EthTransactionConnection", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChatMessage", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "callRequestsConnection", + "name": "ReadedMessages", "description": null, "args": [ { @@ -6479,7 +6993,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CallRequestWhereInput", + "name": "ChatMessageReadedWhereInput", "ofType": null }, "defaultValue": null @@ -6489,7 +7003,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "CallRequestOrderByInput", + "name": "ChatMessageReadedOrderByInput", "ofType": null }, "defaultValue": null @@ -6546,19 +7060,23 @@ } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CallRequestConnection", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChatMessageReaded", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "positionsConnection", + "name": "Notices", "description": null, "args": [ { @@ -6566,7 +7084,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionWhereInput", + "name": "NoticeWhereInput", "ofType": null }, "defaultValue": null @@ -6576,7 +7094,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PositionOrderByInput", + "name": "NoticeOrderByInput", "ofType": null }, "defaultValue": null @@ -6633,19 +7151,23 @@ } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "PositionConnection", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Notice", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectMembersConnection", + "name": "Votes", "description": null, "args": [ { @@ -6653,7 +7175,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereInput", + "name": "VoteWhereInput", "ofType": null }, "defaultValue": null @@ -6663,7 +7185,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "ProjectMemberOrderByInput", + "name": "VoteOrderByInput", "ofType": null }, "defaultValue": null @@ -6720,19 +7242,23 @@ } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ProjectMemberConnection", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Vote", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "servicesConnection", + "name": "NotificationTypes", "description": null, "args": [ { @@ -6740,7 +7266,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ServiceWhereInput", + "name": "NotificationTypeWhereInput", "ofType": null }, "defaultValue": null @@ -6750,7 +7276,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "ServiceOrderByInput", + "name": "NotificationTypeOrderByInput", "ofType": null }, "defaultValue": null @@ -6807,19 +7333,23 @@ } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ServiceConnection", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "NotificationType", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "tasksConnection", + "name": "NotificationTypesCreated", "description": null, "args": [ { @@ -6827,7 +7357,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskWhereInput", + "name": "NotificationTypeWhereInput", "ofType": null }, "defaultValue": null @@ -6837,7 +7367,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "TaskOrderByInput", + "name": "NotificationTypeOrderByInput", "ofType": null }, "defaultValue": null @@ -6894,19 +7424,23 @@ } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TaskConnection", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "NotificationType", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "taskReactionsConnection", + "name": "Tags", "description": null, "args": [ { @@ -6914,7 +7448,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskReactionWhereInput", + "name": "TagWhereInput", "ofType": null }, "defaultValue": null @@ -6924,7 +7458,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "TaskReactionOrderByInput", + "name": "TagOrderByInput", "ofType": null }, "defaultValue": null @@ -6981,19 +7515,23 @@ } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TaskReactionConnection", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Tag", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "teamMembersConnection", + "name": "ResourceTags", "description": null, "args": [ { @@ -7001,7 +7539,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamMemberWhereInput", + "name": "ResourceTagWhereInput", "ofType": null }, "defaultValue": null @@ -7011,7 +7549,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "TeamMemberOrderByInput", + "name": "ResourceTagOrderByInput", "ofType": null }, "defaultValue": null @@ -7068,19 +7606,23 @@ } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TeamMemberConnection", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceTag", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "timersConnection", + "name": "PrismaProjects", "description": null, "args": [ { @@ -7088,7 +7630,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TimerWhereInput", + "name": "ProjectWhereInput", "ofType": null }, "defaultValue": null @@ -7098,7 +7640,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "TimerOrderByInput", + "name": "ProjectOrderByInput", "ofType": null }, "defaultValue": null @@ -7155,280 +7697,383 @@ } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TimerConnection", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "routesConnection", + "name": "user_id", "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RouteWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "RouteOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RouteConnection", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "codeChallengesConnection", + "name": "first_name", "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "CodeChallengeOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CodeChallengeConnection", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "codeChallengeBlocksConnection", + "name": "middle_name", "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "CodeChallengeBlockOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CodeChallengeBlockConnection", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "last_name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gender", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "birth_date", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "country_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "region_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "city_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timezone", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "language_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "num_blog_posts", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "last", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "notification", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "icq", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "www", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contact_email", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mobile_phone", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "home_phone", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "about", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "experience", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "job_title", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "work_place", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ip", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "confirmation_code", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "codeChallengeCompletionsConnection", + "name": "rating", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "etherwallet", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "photo", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "topics", "description": null, "args": [ { @@ -7436,7 +8081,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionWhereInput", + "name": "TopicWhereInput", "ofType": null }, "defaultValue": null @@ -7446,7 +8091,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "CodeChallengeCompletionOrderByInput", + "name": "TopicOrderByInput", "ofType": null }, "defaultValue": null @@ -7503,19 +8148,23 @@ } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CodeChallengeCompletionConnection", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Topic", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "commentsConnection", + "name": "comments", "description": null, "args": [ { @@ -7590,19 +8239,23 @@ } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CommentConnection", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Comment", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "technologyLessonsConnection", + "name": "Tarifs", "description": null, "args": [ { @@ -7610,7 +8263,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TechnologyLessonWhereInput", + "name": "UserTarifWhereInput", "ofType": null }, "defaultValue": null @@ -7620,7 +8273,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "TechnologyLessonOrderByInput", + "name": "UserTarifOrderByInput", "ofType": null }, "defaultValue": null @@ -7677,19 +8330,23 @@ } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TechnologyLessonConnection", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserTarif", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "careersConnection", + "name": "Account", "description": null, "args": [ { @@ -7697,86 +8354,22 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CareerWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "CareerOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", + "name": "AccountWhereInput", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CareerConnection", - "ofType": null - } + "kind": "OBJECT", + "name": "Account", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "technologyLessonUsersConnection", + "name": "Places", "description": null, "args": [ { @@ -7784,7 +8377,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserWhereInput", + "name": "PlaceWhereInput", "ofType": null }, "defaultValue": null @@ -7794,7 +8387,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "TechnologyLessonUserOrderByInput", + "name": "PlaceOrderByInput", "ofType": null }, "defaultValue": null @@ -7851,98 +8444,43 @@ } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TechnologyLessonUserConnection", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Place", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "userTechnologiesConnection", + "name": "sudo", "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "UserTechnologyOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasEmail", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "UserTechnologyConnection", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, @@ -7950,152882 +8488,319 @@ "deprecationReason": null }, { - "name": "testsConnection", + "name": "hasPhone", "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TestWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "TestOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TestConnection", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ { - "name": "technologiesConnection", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TechnologyWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "TechnologyOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "ID", + "description": "The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"4\"`) or integer (such as `4`) input value will be accepted as an ID.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "Node", + "description": "An object with an ID", + "fields": [ + { + "name": "id", + "description": "The id of the object.", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TechnologyConnection", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "User", + "ofType": null }, { - "name": "ethBlocksConnection", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "EthBlockOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EthBlockConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "teamsConnection", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "TeamOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TeamConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectsConnection", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "ProjectOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "templatesConnection", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TemplateWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "TemplateOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TemplateConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "resourcesConnection", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "ResourceOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ResourceConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "chatMessagesConnection", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "ChatMessageOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChatMessageConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "usersConnection", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "UserOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UserConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "myWorlds", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "me", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ethNet", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ethNet", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ethCoinbase", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "EthAccount", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ethPersonalAccounts", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EthPersonalAccount", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ethBalance", - "description": null, - "args": [ - { - "name": "address", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "convert", - "description": null, - "type": { - "kind": "ENUM", - "name": "EthAmountConvert", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ethTransactionCount", - "description": null, - "args": [ - { - "name": "address", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ethSyncState", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ethSyncState", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ethGetBlockNumber", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ethGetBlock", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthGetBlockWhereInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ethGetBlockTransactionCount", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthGetBlockWhereInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ethGetTransaction", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthGetTransactionWhereInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "String", - "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Int", - "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Boolean", - "description": "The `Boolean` scalar type represents `true` or `false`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Float", - "description": "The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GalleryWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GalleryWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GalleryWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GalleryWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Files_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FileWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Files_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FileWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Files_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FileWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Resource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "ID", - "description": "The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"4\"`) or integer (such as `4`) input value will be accepted as an ID.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "DateTime", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "FileWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "path_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "path_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filename", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filename_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filename_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "filename_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "filename_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filename_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filename_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filename_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filename_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filename_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filename_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filename_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filename_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filename_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mimetype", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mimetype_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mimetype_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mimetype_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mimetype_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mimetype_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mimetype_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mimetype_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mimetype_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mimetype_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mimetype_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mimetype_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mimetype_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mimetype_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "encoding", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "encoding_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "encoding_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "encoding_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "encoding_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "encoding_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "encoding_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "encoding_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "encoding_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "encoding_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "encoding_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "encoding_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "encoding_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "encoding_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "hash_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "hash_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "size", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "size_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "size_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "size_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "size_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "size_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "size_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "size_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "rank_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "rank_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Gallery", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GalleryWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ImageResource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "search", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "username", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "username_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "username_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "username_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "username_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "username_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "username_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "username_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "username_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "username_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "username_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "username_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "username_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "username_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "email_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "email_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "phone_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "phone_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "showEmail", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "showEmail_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "showPhone", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "showPhone_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "password_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "password_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fullname", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fullname_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fullname_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "fullname_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "fullname_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fullname_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fullname_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fullname_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fullname_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fullname_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fullname_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fullname_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fullname_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fullname_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "image_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "image_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "address_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "address_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "active", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "active_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "activated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "activated_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "deleted", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "deleted_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hidden", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hidden_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sudo", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sudo_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "marketplaceToken", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "marketplaceToken_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "marketplaceToken_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "marketplaceToken_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "marketplaceToken_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "marketplaceToken_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "marketplaceToken_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "marketplaceToken_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "marketplaceToken_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "marketplaceToken_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "marketplaceToken_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "marketplaceToken_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "marketplaceToken_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "marketplaceToken_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptChatMessageAnonymous", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptChatMessageAnonymous_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptNewChatRoomAnonymous", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptNewChatRoomAnonymous_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptNewChatRoom", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptNewChatRoom_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "oldID_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "oldID_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Groups_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Groups_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Groups_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedUsers_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedUsers_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedUsers_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "LogedIns_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "LogedIns_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "LogedIns_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Files_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FileWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Files_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FileWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Files_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FileWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "worlds_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "WorldWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "worlds_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "WorldWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "worlds_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "WorldWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "settings", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Resources_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Resources_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Resources_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Votes_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "VoteWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Votes_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "VoteWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Votes_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "VoteWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "NotificationTypes_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "NotificationTypes_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "NotificationTypes_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "NotificationTypesCreated_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "NotificationTypesCreated_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "NotificationTypesCreated_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Tags_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TagWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Tags_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TagWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Tags_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TagWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ResourceTags_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ResourceTags_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ResourceTags_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Rooms_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Rooms_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Rooms_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedRooms_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedRooms_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedRooms_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Messages_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Messages_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Messages_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ReadedMessages_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ReadedMessages_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ReadedMessages_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Notices_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Notices_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Notices_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "EthContractSourcesCreated_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "EthContractSourcesCreated_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "EthContractSourcesCreated_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "EthAccounts_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "EthAccounts_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "EthAccounts_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Teams_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Teams_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Teams_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "TeamsCreated_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "TeamsCreated_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "TeamsCreated_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Projects_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Projects_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Projects_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ProjectsCreated_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ProjectsCreated_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ProjectsCreated_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Tasks_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Tasks_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Tasks_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Timers_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TimerWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Timers_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TimerWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Timers_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TimerWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PositionsCreated_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PositionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PositionsCreated_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PositionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PositionsCreated_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PositionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Positions_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PositionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Positions_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PositionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Positions_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PositionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "TasksReactions_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "TasksReactions_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "TasksReactions_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "LettersCreated_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LetterWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "LettersCreated_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LetterWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "LettersCreated_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LetterWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "EthAccountAuthed", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CodeChallengeCompletions_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CodeChallengeCompletions_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CodeChallengeCompletions_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaProjects_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaProjects_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaProjects_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Imports_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ImportWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Imports_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ImportWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Imports_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ImportWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Career", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CareerWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "showHidden", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserGroupWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserGroupWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserGroupWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserGroupWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Users_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Users_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Users_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LogedInWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogedInWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogedInWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogedInWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fake", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fake_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "User", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "WorldWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WorldWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WorldWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WorldWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "seed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "seed_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "seed_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "seed_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "seed_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "seed_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "seed_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "seed_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "seed_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "seed_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "seed_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "seed_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "seed_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "seed_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "WorldType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "WorldType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WorldType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "type_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WorldType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "time", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "time_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "time_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "time_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "time_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "time_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "time_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "time_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timeChanger", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timeChanger_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timeChanger_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timeChanger_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timeChanger_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timeChanger_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timeChanger_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timeChanger_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "days", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "days_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "days_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "days_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "days_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "days_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "days_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "days_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lastPlayed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lastPlayed_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lastPlayed_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "lastPlayed_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "lastPlayed_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lastPlayed_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lastPlayed_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lastPlayed_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "changedBlocks_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "changedBlocks_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "changedBlocks_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "players_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PlayerWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "players_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PlayerWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "players_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PlayerWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "messages_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "MessageWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "messages_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "MessageWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "messages_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "MessageWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "WorldType", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "DEFAULT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SUPERFLAT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "BlockWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "BlockWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "BlockWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "BlockWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "representation", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "representation_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "representation_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "representation_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "representation_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "representation_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "representation_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "representation_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "representation_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "representation_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "representation_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "representation_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "representation_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "representation_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "type_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "type_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "x", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "x_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "x_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "x_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "x_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "x_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "x_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "x_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "y", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "y_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "y_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "y_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "y_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "y_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "y_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "y_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "z", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "z_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "z_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "z_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "z_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "z_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "z_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "z_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "world", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "WorldWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PlayerWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PlayerWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PlayerWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PlayerWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAdmin", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAdmin_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gamemode", - "description": null, - "type": { - "kind": "ENUM", - "name": "Gamemode", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gamemode_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "Gamemode", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gamemode_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "Gamemode", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "gamemode_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "Gamemode", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "lastLogin", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lastLogin_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lastLogin_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "lastLogin_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "lastLogin_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lastLogin_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lastLogin_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lastLogin_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "x", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "x_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "x_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "x_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "x_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "x_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "x_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "x_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "y", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "y_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "y_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "y_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "y_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "y_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "y_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "y_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "z", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "z_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "z_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "z_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "z_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "z_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "z_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "z_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dirx", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dirx_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dirx_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "dirx_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "dirx_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dirx_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dirx_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dirx_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "diry", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "diry_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "diry_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "diry_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "diry_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "diry_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "diry_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "diry_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "world", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "WorldWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "inventory", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "InventoryWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "Gamemode", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "SURVIVAL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CREATIVE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ADVENTURE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SPECTATOR", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "InventoryWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "InventoryWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "InventoryWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "InventoryWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "cursor", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "cursor_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "cursor_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "cursor_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "cursor_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "cursor_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "cursor_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "cursor_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "data_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "data_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "player", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PlayerWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "MessageWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MessageWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MessageWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MessageWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "MessageType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "MessageType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MessageType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "type_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MessageType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "sender", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "sender_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "sender_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "body_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "body_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "world", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "WorldWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "MessageType", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ERROR", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PLAYER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SERVER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INFO", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SettingsWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SettingsWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SettingsWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SettingsWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "renderDistance", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "renderDistance_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "renderDistance_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "renderDistance_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "renderDistance_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "renderDistance_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "renderDistance_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "renderDistance_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "User", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "code_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "code_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "ResourceType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "ResourceType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ResourceType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "type_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ResourceType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "longtitle", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "longtitle_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "longtitle_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "longtitle_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "longtitle_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "longtitle_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "longtitle_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "longtitle_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "longtitle_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "longtitle_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "longtitle_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "longtitle_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "longtitle_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "longtitle_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "contentText_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "contentText_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "published", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "published_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "deleted", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "deleted_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hidemenu", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hidemenu_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "searchable", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "searchable_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uri_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uri_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "uri_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "uri_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uri_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uri_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uri_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uri_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uri_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uri_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uri_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uri_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uri_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isfolder", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isfolder_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rating", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rating_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rating_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "rating_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "rating_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rating_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rating_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rating_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "positiveVotesCount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "positiveVotesCount_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "positiveVotesCount_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "positiveVotesCount_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "positiveVotesCount_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "positiveVotesCount_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "positiveVotesCount_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "positiveVotesCount_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "negativeVotesCount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "negativeVotesCount_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "negativeVotesCount_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "negativeVotesCount_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "negativeVotesCount_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "negativeVotesCount_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "negativeVotesCount_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "negativeVotesCount_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "neutralVotesCount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "neutralVotesCount_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "neutralVotesCount_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "neutralVotesCount_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "neutralVotesCount_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "neutralVotesCount_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "neutralVotesCount_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "neutralVotesCount_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "oldID_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "oldID_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mockUpdate", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mockUpdate_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mockUpdate_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mockUpdate_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mockUpdate_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mockUpdate_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mockUpdate_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mockUpdate_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentOldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentOldID_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentOldID_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "commentOldID_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "commentOldID_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentOldID_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentOldID_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentOldID_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "class_key", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "class_key_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "class_key_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "class_key_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "class_key_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "class_key_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "class_key_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "class_key_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "class_key_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "class_key_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "class_key_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "class_key_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "class_key_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "class_key_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "template", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "template_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "template_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "template_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "template_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "template_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "template_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "template_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Parent", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaProject", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Topic", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Comments_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Comments_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Comments_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Votes_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "VoteWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Votes_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "VoteWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Votes_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "VoteWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Tags_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Tags_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Tags_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Blog", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CodeChallenge", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Galleries_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GalleryWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Galleries_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GalleryWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Galleries_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GalleryWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "EthAccount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Image", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FileWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Service", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Team", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Project", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ResourceType", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Blog", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Comment", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PersonalBlog", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Project", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Resource", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Service", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Team", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Topic", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "domain_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "domain_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "description_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "description_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "url_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "url_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sequence", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sequence_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sequence_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "sequence_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "sequence_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sequence_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sequence_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sequence_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "contentText_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "contentText_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "ProjectStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "ProjectStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProjectStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "status_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProjectStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "public", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "public_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "oldID_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "oldID_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "ProjectType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "ProjectType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProjectType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "type_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProjectType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "PrismaTemplates_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TemplateWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaTemplates_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TemplateWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaTemplates_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TemplateWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaUsers_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaUsers_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaUsers_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaResources_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaResources_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaResources_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Members_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Members_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Members_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ProjectTasks_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ProjectTasks_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ProjectTasks_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Team", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Customers_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Customers_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Customers_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ChatRoom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Image", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FileWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Resource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "EthAccounts_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "EthAccounts_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "EthAccounts_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "search", - "description": "Поиск по нескольким полям", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "active_only", - "description": "Только активные проекты", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ProjectStatus", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "New", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Accepted", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Rejected", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Processing", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Completed", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Reopened", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ProjectType", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Education", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TemplateWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TemplateWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TemplateWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TemplateWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "externalKey_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "externalKey_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "description_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "description_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "component_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "component_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "rank_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "rank_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Parent", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TemplateWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Project", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaProject", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "ProjectMemberStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "ProjectMemberStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProjectMemberStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "status_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProjectMemberStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Project", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "User", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Services_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Services_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Services_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ProjectMemberStatus", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Invited", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Active", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Fired", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Quit", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "description_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "description_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "code_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "code_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "rank_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "rank_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "oldID_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "oldID_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Projects_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Projects_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Projects_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Parent", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Category", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Resource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "description_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "description_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "code_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "code_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Services_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Services_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Services_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Parent", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Project", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Task", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "description_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "description_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "TaskStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "TaskStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TaskStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "status_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TaskStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "startDatePlaning", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startDatePlaning_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startDatePlaning_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "startDatePlaning_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "startDatePlaning_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startDatePlaning_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startDatePlaning_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startDatePlaning_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endDatePlaning", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endDatePlaning_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endDatePlaning_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "endDatePlaning_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "endDatePlaning_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endDatePlaning_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endDatePlaning_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endDatePlaning_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startDate", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startDate_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startDate_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "startDate_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "startDate_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startDate_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startDate_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startDate_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endDate", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endDate_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endDate_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "endDate_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "endDate_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endDate_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endDate_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endDate_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "TaskProjects_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "TaskProjects_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "TaskProjects_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Members_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Members_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Members_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Parent", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "RelatedFrom_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "RelatedFrom_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "RelatedFrom_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "RelatedTo_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "RelatedTo_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "RelatedTo_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Timers_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TimerWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Timers_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TimerWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Timers_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TimerWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Reactions_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Reactions_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Reactions_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ChatRoom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CodeChallengeCompletion", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "TaskStatus", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "New", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Accepted", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Rejected", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Progress", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Paused", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Done", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Discuss", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Approved", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "RevisionsRequired", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Completed", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskMemberWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "TaskMemberStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "TaskMemberStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TaskMemberStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "status_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TaskMemberStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Task", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "User", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "TaskMemberStatus", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Invited", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Active", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Fired", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Quit", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TimerWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TimerWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TimerWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TimerWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stopedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stopedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stopedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "stopedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "stopedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stopedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stopedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stopedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Task", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskReactionWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "TaskReactionType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "TaskReactionType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TaskReactionType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "type_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TaskReactionType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Task", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "TaskReactionType", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "UpVote", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "description_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "description_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "image_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "image_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "code_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "code_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isPublic", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isPublic_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowAnonymous", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowAnonymous_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sandbox", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sandbox_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Members_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Members_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Members_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Messages_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Messages_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Messages_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Invitations_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Invitations_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Invitations_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CallRequests_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CallRequestWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CallRequests_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CallRequestWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CallRequests_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CallRequestWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Task", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Project", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "contentText_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "contentText_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Room", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ReadedBy_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ReadedBy_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ReadedBy_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Message", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "User", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "User", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ChatRoom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Notice", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NoticeWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NoticeWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NoticeWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NoticeWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "NoticeType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "NoticeType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "NoticeType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "type_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "NoticeType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "User", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ChatMessage", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ChatRoomInvitation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "NoticeType", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ChatMessage", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Call", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CallRequest", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ChatRoomInvitation", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CallRequestWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CallRequestWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CallRequestWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CallRequestWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "CallRequestStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "CallRequestStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CallRequestStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "status_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CallRequestStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "startedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "startedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "startedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "endedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "endedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Called", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Caller", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Room", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "CallRequestStatus", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Created", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Rejected", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Accepted", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Started", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Canceled", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Missed", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Ended", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Error", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Billed", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "content", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "content_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "content_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "content_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "content_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "content_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "content_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "content_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "content_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "content_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "content_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "content_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "content_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "content_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "success", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "success_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CodeChallenge", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Task", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "externalKey_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "externalKey_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dashedName", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dashedName_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dashedName_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "dashedName_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "dashedName_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dashedName_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dashedName_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dashedName_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dashedName_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dashedName_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dashedName_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dashedName_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dashedName_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dashedName_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "localeTitle", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "localeTitle_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "localeTitle_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "localeTitle_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "localeTitle_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "localeTitle_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "localeTitle_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "localeTitle_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "localeTitle_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "localeTitle_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "localeTitle_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "localeTitle_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "localeTitle_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "localeTitle_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "description_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "description_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "challengeType", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "challengeType_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "challengeType_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "challengeType_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "challengeType_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "challengeType_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "challengeType_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "challengeType_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "forumTopicId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "forumTopicId_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "forumTopicId_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "forumTopicId_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "forumTopicId_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "forumTopicId_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "forumTopicId_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "forumTopicId_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "instructions", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "instructions_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "instructions_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "instructions_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "instructions_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "instructions_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "instructions_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "instructions_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "instructions_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "instructions_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "instructions_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "instructions_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "instructions_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "instructions_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "videoUrl", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "videoUrl_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "videoUrl_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "videoUrl_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "videoUrl_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "videoUrl_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "videoUrl_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "videoUrl_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "videoUrl_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "videoUrl_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "videoUrl_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "videoUrl_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "videoUrl_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "videoUrl_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "order_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "order_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "superOrder", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "superOrder_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "superOrder_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "superOrder_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "superOrder_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "superOrder_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "superOrder_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "superOrder_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "challengeOrder", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "challengeOrder_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "challengeOrder_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "challengeOrder_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "challengeOrder_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "challengeOrder_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "challengeOrder_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "challengeOrder_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isRequired", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isRequired_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isPrivate", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isPrivate_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isBeta", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isBeta_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "template", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "template_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "template_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "template_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "template_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "template_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "template_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "template_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "template_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "template_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "template_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "template_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "template_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "template_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "time", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "time_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "time_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "time_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "time_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "time_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "time_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "time_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "time_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "time_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "time_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "time_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "time_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "time_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "rank_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "rank_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Block", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Completions_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Completions_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Completions_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Topic", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "externalKey_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "externalKey_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "rank_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "rank_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Parent", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Children_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Children_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Children_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Challenges_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Challenges_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Challenges_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "TeamStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "TeamStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TeamStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "status_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TeamStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "oldID_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "oldID_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "address_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "address_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "website", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "website_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "website_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "website_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "website_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "website_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "website_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "website_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "website_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "website_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "website_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "website_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "website_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "website_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "email_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "email_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "phone_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "phone_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Parent", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Members_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Members_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Members_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Projects_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Projects_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Projects_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "OrderedProjects_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "OrderedProjects_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "OrderedProjects_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Resource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "TeamStatus", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Active", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Inactive", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamMemberWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "TeamMemberStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "TeamMemberStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TeamMemberStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "status_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TeamMemberStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "Team", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "User", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "TeamMemberStatus", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Invited", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Active", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Fired", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "address_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "address_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "EthAccountType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "EthAccountType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "EthAccountType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "type_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "EthAccountType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "source", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "source_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "source_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "bytecode", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "bytecode_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "bytecode_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "bytecode_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "bytecode_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "bytecode_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "bytecode_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "bytecode_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "bytecode_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "bytecode_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "bytecode_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "bytecode_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "bytecode_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "bytecode_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Transaction", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "IncomeTransactions_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "IncomeTransactions_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "IncomeTransactions_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "OutcomeTransactions_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "OutcomeTransactions_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "OutcomeTransactions_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ContractSource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "BlocksMined_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "BlocksMined_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "BlocksMined_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "UserAuthed", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Project", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Resources_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Resources_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Resources_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "EthAccountType", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Account", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Contract", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "chainId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "chainId_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "chainId_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "chainId_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "chainId_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "chainId_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "chainId_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "chainId_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amount_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amount_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "amount_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "amount_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amount_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amount_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amount_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "input", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "input_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "input_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "input_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "input_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "input_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "input_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "input_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "input_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "input_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "input_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "input_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "input_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "input_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "index", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "index_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "index_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "index_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "index_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "index_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "index_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "index_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "address_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "address_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "EthTransactionType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "EthTransactionType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "EthTransactionType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "type_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "EthTransactionType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "v", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "v_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "v_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "v_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "v_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "v_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "v_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "v_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "v_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "v_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "v_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "v_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "v_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "v_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "r", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "r_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "r_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "r_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "r_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "r_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "r_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "r_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "r_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "r_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "r_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "r_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "r_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "r_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "s", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "s_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "s_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "s_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "s_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "s_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "s_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "s_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "s_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "s_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "s_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "s_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "s_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "s_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Sender", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Receiver", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Account", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Block", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "EthTransactionType", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ContractCreate", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ContractRead", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ContractCall", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SendEth", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SendToken", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthBlockWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthBlockWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthBlockWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthBlockWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "hash_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "hash_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "number_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "number_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "difficulty", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "difficulty_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "difficulty_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "difficulty_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "difficulty_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "difficulty_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "difficulty_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "difficulty_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "totalDifficulty", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "totalDifficulty_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "totalDifficulty_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "totalDifficulty_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "totalDifficulty_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "totalDifficulty_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "totalDifficulty_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "totalDifficulty_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "extraData", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "extraData_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "extraData_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "extraData_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "extraData_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "extraData_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "extraData_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "extraData_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "extraData_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "extraData_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "extraData_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "extraData_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "extraData_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "extraData_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gasLimit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gasLimit_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gasLimit_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "gasLimit_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "gasLimit_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gasLimit_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gasLimit_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gasLimit_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gasUsed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gasUsed_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gasUsed_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "gasUsed_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "gasUsed_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gasUsed_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gasUsed_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gasUsed_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mixHash", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mixHash_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mixHash_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mixHash_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mixHash_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mixHash_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mixHash_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mixHash_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mixHash_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mixHash_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mixHash_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mixHash_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mixHash_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mixHash_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "nonce", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "nonce_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "nonce_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "nonce_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "nonce_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "nonce_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "nonce_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "nonce_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "nonce_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "nonce_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "nonce_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "nonce_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "nonce_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "nonce_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "parentHash", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "parentHash_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "parentHash_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "parentHash_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "parentHash_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "parentHash_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "parentHash_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "parentHash_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "parentHash_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "parentHash_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "parentHash_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "parentHash_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "parentHash_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "parentHash_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "receiptsRoot", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "receiptsRoot_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "receiptsRoot_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "receiptsRoot_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "receiptsRoot_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "receiptsRoot_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "receiptsRoot_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "receiptsRoot_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "receiptsRoot_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "receiptsRoot_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "receiptsRoot_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "receiptsRoot_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "receiptsRoot_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "receiptsRoot_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha3Uncles", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha3Uncles_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha3Uncles_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "sha3Uncles_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "sha3Uncles_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha3Uncles_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha3Uncles_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha3Uncles_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha3Uncles_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha3Uncles_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha3Uncles_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha3Uncles_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha3Uncles_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha3Uncles_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "size", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "size_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "size_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "size_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "size_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "size_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "size_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "size_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stateRoot", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stateRoot_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stateRoot_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "stateRoot_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "stateRoot_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stateRoot_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stateRoot_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stateRoot_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stateRoot_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stateRoot_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stateRoot_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stateRoot_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stateRoot_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stateRoot_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "date_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "date_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionsRoot", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionsRoot_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionsRoot_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "transactionsRoot_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "transactionsRoot_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionsRoot_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionsRoot_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionsRoot_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionsRoot_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionsRoot_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionsRoot_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionsRoot_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionsRoot_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionsRoot_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactions_count", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactions_count_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactions_count_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "transactions_count_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "transactions_count_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactions_count_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactions_count_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactions_count_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Miner", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Transactions_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Transactions_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Transactions_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Uncles_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Uncles_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Uncles_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "source_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "source_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Accounts_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Accounts_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Accounts_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "VoteWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "VoteWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "VoteWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "VoteWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "value_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "value_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Resource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "User", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "TagStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "TagStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TagStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "status_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TagStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "Resource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Tag", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TagWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "TagStatus", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Active", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Moderated", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Blocked", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TagWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TagWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TagWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TagWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "TagStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "TagStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TagStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "status_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TagStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "Resources_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Resources_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Resources_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "code_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "code_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comment", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comment_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comment_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "comment_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "comment_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comment_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comment_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comment_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comment_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comment_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comment_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comment_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comment_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comment_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "oldID_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "oldID_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Users_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Users_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Users_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PositionWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PositionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PositionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PositionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "code_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "code_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Users_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Users_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Users_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LetterWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LetterWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LetterWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LetterWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "email_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "email_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subject", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subject_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subject_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "subject_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "subject_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subject_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subject_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subject_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subject_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subject_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subject_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subject_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subject_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subject_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "message_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "message_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "LetterStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "LetterStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "LetterStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "status_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "LetterStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "rank", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "rank_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "rank_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "deleteOnSend", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "deleteOnSend_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "replyTo", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "replyTo_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "replyTo_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "replyTo_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "replyTo_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "replyTo_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "replyTo_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "replyTo_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "replyTo_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "replyTo_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "replyTo_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "replyTo_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "replyTo_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "replyTo_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "returnTo", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "returnTo_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "returnTo_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "returnTo_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "returnTo_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "returnTo_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "returnTo_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "returnTo_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "returnTo_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "returnTo_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "returnTo_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "returnTo_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "returnTo_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "returnTo_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "User", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "LetterStatus", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Created", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Processing", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Sended", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Error", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ImportWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ImportWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ImportWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ImportWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "ImportStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "ImportStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ImportStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "status_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ImportStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "Logs_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LogWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Logs_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LogWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Logs_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LogWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ImportStatus", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Created", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Started", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Error", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Completed", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Stoped", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LogWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "level", - "description": null, - "type": { - "kind": "ENUM", - "name": "LogLevel", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "level_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "LogLevel", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "level_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "LogLevel", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "level_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "LogLevel", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "objectType", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "objectType_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "objectType_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "objectType_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "objectType_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "objectType_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "objectType_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "objectType_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "objectType_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "objectType_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "objectType_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "objectType_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "objectType_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "objectType_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "message_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "message_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stack", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stack_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stack_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "stack_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "stack_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stack_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stack_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stack_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stack_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stack_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stack_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stack_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stack_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stack_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Import", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ImportWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "LogLevel", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Info", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Notice", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Warning", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Error", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Fatal", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CareerWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CareerWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CareerWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CareerWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "description_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "description_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "start_date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "start_date_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "start_date_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "start_date_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "start_date_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "start_date_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "start_date_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "start_date_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "GalleryOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Gallery", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Files", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FileWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "FileOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "File", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Resource", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Resource", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INTERFACE", - "name": "Node", - "description": "An object with an ID", - "fields": [ - { - "name": "id", - "description": "The id of the object.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Gallery", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "File", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "UserGroup", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "LogedIn", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Resource", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Vote", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "ResourceTag", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Tag", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Service", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "ProjectMember", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Template", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "ProjectTask", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Task", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "TaskMember", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Timer", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "TaskReaction", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "ChatRoom", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "ChatMessage", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "ChatMessageReaded", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "ChatRoomInvitation", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Notice", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "CallRequest", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "CodeChallengeCompletion", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "CodeChallenge", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "CodeChallengeBlock", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Team", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "TeamMember", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "EthAccount", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "EthTransaction", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "EthBlock", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "EthContractSource", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "ServiceCategory", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "NotificationType", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "World", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Block", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Player", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Inventory", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Message", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Settings", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Game", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Tourney", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Tournament", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "TournamentGroup", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "TourneyPlayer", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "GameResult", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Position", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Route", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Comment", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "TechnologyLesson", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Technology", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "UserTechnology", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "TechnologyLessonUser", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Career", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Test", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "SmsMessage", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "SmsProvider", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "LetsadsSmsMessageStatus", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "LetsadsSmsMessageStatusItem", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "ResetPassword", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Import", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Log", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Letter", - "ofType": null - } - ] - }, - { - "kind": "ENUM", - "name": "FileOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "path_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "path_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filename_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filename_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mimetype_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mimetype_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "encoding_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "encoding_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hash_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hash_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "size_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "size_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rank_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rank_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "File", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "path", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filename", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mimetype", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "encoding", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hash", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "size", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rank", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Gallery", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Gallery", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ImageResource", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Resource", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "User", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "username", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "email", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "phone", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "showEmail", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "showPhone", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "password", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fullname", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "image", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "address", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sudo", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "active", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "activated", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleted", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Groups", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "UserGroupOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UserGroup", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedUsers", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "UserOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "LogedIns", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "LogedInOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LogedIn", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Resources", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "ResourceOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Resource", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Votes", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "VoteWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "VoteOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Vote", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NotificationTypes", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "NotificationTypeOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "NotificationType", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NotificationTypesCreated", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "NotificationTypeOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "NotificationType", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Tags", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TagWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "TagOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Tag", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ResourceTags", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "ResourceTagOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ResourceTag", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EthContractSourcesCreated", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "EthContractSourceOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EthContractSource", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EthAccounts", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "EthAccountOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EthAccount", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Teams", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "TeamMemberOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TeamMember", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TeamsCreated", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "TeamOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Projects", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "ProjectMemberOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectMember", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ProjectsCreated", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "ProjectOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Tasks", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "TaskMemberOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TaskMember", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Timers", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TimerWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "TimerOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Timer", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PrismaProjects", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "ProjectOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CodeChallengeCompletions", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "CodeChallengeCompletionOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CodeChallengeCompletion", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasEmail", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasPhone", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "marketplaceToken", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hidden", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EthAccountAuthed", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "EthAccount", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "worlds", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "WorldWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "WorldOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "World", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "settings", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Settings", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "UserGroupOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UserGroup", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Users", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "UserOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "UserOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "username_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "username_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "email_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "email_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "phone_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "phone_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "showEmail_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "showEmail_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "showPhone_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "showPhone_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "password_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "password_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fullname_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fullname_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "image_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "image_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "address_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "address_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "active_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "active_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "activated_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "activated_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleted_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleted_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hidden_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hidden_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sudo_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sudo_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "marketplaceToken_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "marketplaceToken_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "acceptChatMessageAnonymous_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "acceptChatMessageAnonymous_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "acceptNewChatRoomAnonymous_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "acceptNewChatRoomAnonymous_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "acceptNewChatRoom_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "acceptNewChatRoom_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "oldID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "oldID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "LogedInOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fake_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fake_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LogedIn", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fake", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "User", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ResourceOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "longtitle_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "longtitle_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "content_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "content_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "contentText_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "contentText_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "published_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "published_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleted_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleted_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hidemenu_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hidemenu_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "searchable_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "searchable_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uri_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uri_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isfolder_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isfolder_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rating_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rating_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "positiveVotesCount_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "positiveVotesCount_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "negativeVotesCount_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "negativeVotesCount_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "neutralVotesCount_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "neutralVotesCount_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "oldID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "oldID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mockUpdate_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mockUpdate_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "components_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "components_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "commentOldID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "commentOldID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "class_key_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "class_key_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "template_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "template_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Resource", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "ResourceType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "longtitle", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "content", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "components", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "contentText", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "published", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleted", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hidemenu", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "searchable", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uri", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isfolder", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Parent", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Resource", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Childs", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "ResourceOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Resource", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Image", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FileWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "File", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rating", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "positiveVotesCount", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "negativeVotesCount", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "neutralVotesCount", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CommentTarget", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Resource", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Topic", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Resource", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Comments", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "ResourceOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Resource", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Votes", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "VoteWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "VoteOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Vote", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Tags", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "ResourceTagOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ResourceTag", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "oldID", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "commentOldID", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Topics", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "ResourceOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Resource", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Blog", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Resource", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Service", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Service", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Project", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Team", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "class_key", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "template", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mockUpdate", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Galleries", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GalleryWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "GalleryOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Gallery", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CodeChallenge", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "CodeChallenge", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Json", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "VoteOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "value_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "value_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Vote", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Resource", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Resource", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "User", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ResourceTagOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ResourceTag", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TagStatus", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Resource", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Resource", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Tag", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Tag", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Tag", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TagStatus", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Resources", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "ResourceTagOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ResourceTag", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Service", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Projects", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "ProjectMemberOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectMember", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Parent", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Service", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Childs", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "ServiceOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Service", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rank", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Category", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ServiceCategory", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "oldID", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Resource", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Resource", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ProjectMemberOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectMember", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Project", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "User", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Services", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "ServiceOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Service", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "ProjectMemberStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Project", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "domain", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PrismaTemplates", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TemplateWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "TemplateOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Template", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PrismaUsers", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "UserOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PrismaResources", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "ResourceOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Resource", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Members", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "ProjectMemberOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectMember", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ProjectTasks", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "ProjectTaskOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectTask", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Team", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Customers", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "TeamOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ChatRoom", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ChatRoom", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sequence", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "content", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "contentText", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "ProjectStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "public", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "oldID", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Image", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "File", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Resource", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Resource", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "ProjectType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EthAccounts", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "EthAccountOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EthAccount", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "TemplateOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "externalKey_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "externalKey_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "component_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "component_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "props_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "props_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "components_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "components_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "vars_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "vars_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rank_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rank_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Template", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "externalKey", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "component", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "props", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "components", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "vars", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rank", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Parent", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Template", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Project", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PrismaProject", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ProjectTaskOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectTask", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Project", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Task", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Task", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Task", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "content", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TaskStatus", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TaskProjects", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "ProjectTaskOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectTask", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Members", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "TaskMemberOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TaskMember", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Parent", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Task", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Childs", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "TaskOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Task", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "RelatedFrom", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "TaskOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Task", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "RelatedTo", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "TaskOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Task", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "startDatePlaning", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "endDatePlaning", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "startDate", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "endDate", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Timers", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TimerWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "TimerOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Timer", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Reactions", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "TaskReactionOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TaskReaction", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ChatRoom", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ChatRoom", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CodeChallengeCompletion", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "CodeChallengeCompletion", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "TaskMemberOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TaskMember", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Task", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Task", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "User", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TaskMemberStatus", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "TaskOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "content_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "content_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "startDatePlaning_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "startDatePlaning_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "endDatePlaning_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "endDatePlaning_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "startDate_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "startDate_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "endDate_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "endDate_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "TimerOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stopedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stopedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Timer", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stopedAt", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Task", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Task", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "TaskReactionOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TaskReaction", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Task", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Task", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "TaskReactionType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ChatRoom", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "image", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Members", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "UserOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Messages", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "ChatMessageOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChatMessage", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isPublic", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "allowAnonymous", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sandbox", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Invitations", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "ChatRoomInvitationOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChatRoomInvitation", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CallRequests", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CallRequestWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "CallRequestOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CallRequest", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Task", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Task", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Project", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ChatMessageOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "content_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "content_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "contentText_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "contentText_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ChatMessage", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "content", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "contentText", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Room", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ChatRoom", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ReadedBy", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "ChatMessageReadedOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChatMessageReaded", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ChatMessageReadedOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ChatMessageReaded", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Message", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChatMessage", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "User", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ChatRoomInvitationOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ChatRoomInvitation", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "User", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ChatRoom", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChatRoom", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Notice", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Notice", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Notice", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "NoticeType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "User", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ChatMessage", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ChatMessage", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ChatRoomInvitation", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ChatRoomInvitation", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "CallRequestOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "called_descriptions_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "called_descriptions_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "caller_descriptions_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "caller_descriptions_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "startedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "startedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "endedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "endedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CallRequest", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "called_descriptions", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "caller_descriptions", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "CallRequestStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "startedAt", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "endedAt", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Called", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Caller", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Room", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ChatRoom", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CodeChallengeCompletion", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CodeChallenge", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CodeChallenge", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Task", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Task", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "content", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CodeChallenge", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "externalKey", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dashedName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "localeTitle", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "challengeType", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "forumTopicId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "translations", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tests", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "solutions", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "instructions", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "files", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "videoUrl", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "superOrder", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "challengeOrder", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "required", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isRequired", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isPrivate", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isBeta", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "template", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "time", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rank", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Block", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CodeChallengeBlock", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Completions", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "CodeChallengeCompletionOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CodeChallengeCompletion", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Topic", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Resource", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CodeChallengeBlock", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "externalKey", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rank", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Parent", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "CodeChallengeBlock", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Children", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "CodeChallengeBlockOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CodeChallengeBlock", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Challenges", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "CodeChallengeOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CodeChallenge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "CodeChallengeBlockOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "externalKey_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "externalKey_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rank_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rank_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "CodeChallengeOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "externalKey_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "externalKey_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dashedName_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dashedName_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "localeTitle_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "localeTitle_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "challengeType_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "challengeType_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "forumTopicId_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "forumTopicId_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "translations_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "translations_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tests_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tests_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "solutions_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "solutions_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "instructions_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "instructions_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "files_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "files_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "videoUrl_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "videoUrl_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "superOrder_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "superOrder_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "challengeOrder_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "challengeOrder_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "required_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "required_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isRequired_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isRequired_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isPrivate_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isPrivate_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isBeta_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isBeta_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "template_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "template_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "time_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "time_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rank_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rank_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "CodeChallengeCompletionOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "content_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "content_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "success_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "success_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Team", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Parent", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Childs", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "TeamOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Members", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "TeamMemberOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TeamMember", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Projects", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "ProjectOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OrderedProjects", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "ProjectOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TeamStatus", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "oldID", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "address", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "website", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "email", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "phone", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Resource", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Resource", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "TeamOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "oldID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "oldID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "address_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "address_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "website_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "website_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "email_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "email_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "phone_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "phone_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "TeamMemberOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TeamMember", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Team", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "User", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "TeamMemberStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ProjectOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "domain_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "domain_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sequence_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sequence_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "content_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "content_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "contentText_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "contentText_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "public_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "public_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "oldID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "oldID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "EthAccountOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "address_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "address_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "source_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "source_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "bytecode_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "bytecode_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "abi_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "abi_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EthAccount", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "address", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "EthAccountType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Transaction", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "EthTransaction", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IncomeTransactions", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "EthTransactionOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EthTransaction", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OutcomeTransactions", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "EthTransactionOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EthTransaction", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "source", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "bytecode", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "abi", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ContractSource", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "EthContractSource", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BlocksMined", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "EthBlockOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EthBlock", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UserAuthed", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Project", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Resources", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "ResourceOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Resource", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "balance", - "description": null, - "args": [ - { - "name": "convert", - "description": null, - "type": { - "kind": "ENUM", - "name": "EthAmountConvert", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EthTransaction", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "chainId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "amount", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "input", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Sender", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "EthAccount", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Receiver", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "EthAccount", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Account", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "EthAccount", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "address", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "EthTransactionType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "v", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "r", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "s", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Block", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "EthBlock", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EthBlock", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hash", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "number", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "difficulty", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalDifficulty", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "extraData", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gasLimit", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gasUsed", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mixHash", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nonce", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "parentHash", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "receiptsRoot", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sha3Uncles", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "size", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stateRoot", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Miner", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "EthAccount", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Transactions", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "EthTransactionOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EthTransaction", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transactionsRoot", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transactions_count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Uncles", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "EthBlockOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EthBlock", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "EthTransactionOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "chainId_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "chainId_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "amount_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "amount_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "input_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "input_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "address_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "address_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "v_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "v_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "r_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "r_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "s_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "s_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "EthBlockOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hash_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hash_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "number_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "number_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "difficulty_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "difficulty_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalDifficulty_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalDifficulty_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "extraData_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "extraData_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gasLimit_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gasLimit_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gasUsed_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gasUsed_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mixHash_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mixHash_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nonce_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nonce_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "parentHash_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "parentHash_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "receiptsRoot_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "receiptsRoot_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sha3Uncles_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sha3Uncles_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "size_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "size_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stateRoot_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stateRoot_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transactionsRoot_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transactionsRoot_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transactions_count_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transactions_count_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EthContractSource", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "source", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Accounts", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "EthAccountOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EthAccount", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "EthAmountConvert", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "wei", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Kwei", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Mwei", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Gwei", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nano", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ether", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "kether", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mether", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gether", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tether", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ServiceOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rank_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rank_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "oldID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "oldID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ServiceCategory", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Services", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "ServiceOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Service", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Parent", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ServiceCategory", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Childs", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "ServiceCategoryOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ServiceCategory", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ServiceCategoryOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "NotificationTypeOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "comment_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "comment_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "oldID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "oldID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "NotificationType", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "comment", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Users", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "UserOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "oldID", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "TagOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "EthContractSourceOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "source_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "source_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "WorldOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "seed_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "seed_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "time_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "time_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timeChanger_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timeChanger_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "days_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "days_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastPlayed_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastPlayed_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "World", - "description": null, - "fields": [ - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "seed", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WorldType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "time", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timeChanger", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "days", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastPlayed", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "changedBlocks", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "BlockOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "players", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PlayerWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "PlayerOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Player", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "messages", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "MessageWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "MessageOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Message", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "BlockOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "representation_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "representation_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "x_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "x_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "y_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "y_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "z_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "z_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Block", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "representation", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "world", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "World", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "x", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "y", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "z", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "PlayerOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isAdmin_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isAdmin_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gamemode_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gamemode_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastLogin_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastLogin_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "x_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "x_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "y_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "y_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "z_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "z_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dirx_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dirx_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "diry_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "diry_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Player", - "description": null, - "fields": [ - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isAdmin", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gamemode", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "Gamemode", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "world", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "World", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastLogin", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "x", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "y", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "z", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dirx", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "diry", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "inventory", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Inventory", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Inventory", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "player", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Player", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "MessageOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sender_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sender_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "body_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "body_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Message", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "world", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "World", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MessageType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sender", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "body", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Settings", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "renderDistance", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "User", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "NoticeOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ChatRoomOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "image_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "image_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isPublic_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isPublic_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "allowAnonymous_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "allowAnonymous_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sandbox_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sandbox_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GameWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "start_date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "start_date_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "start_date_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "start_date_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "start_date_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "start_date_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "start_date_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "start_date_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "end_date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "end_date_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "end_date_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "end_date_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "end_date_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "end_date_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "end_date_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "end_date_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sequence", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sequence_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sequence_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "sequence_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "sequence_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sequence_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sequence_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sequence_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Tourney", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TourneyWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Users_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Users_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Users_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Teams_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Teams_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Teams_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Parent", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Results_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameResultWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Results_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameResultWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Results_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameResultWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TourneyWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "code_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "code_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "date_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "date_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_till", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_till_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_till_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "date_till_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "date_till_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_till_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_till_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_till_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Tournament", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TournamentWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Players_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TourneyPlayerWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Players_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TourneyPlayerWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Players_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TourneyPlayerWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Games_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Games_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Games_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TournamentWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TournamentWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TournamentWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TournamentWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "code_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "code_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Tourneys_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TourneyWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Tourneys_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TourneyWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Tourneys_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TourneyWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Group", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TournamentGroupWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TournamentGroupWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TournamentGroupWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TournamentGroupWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TournamentGroupWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "code_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "code_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Tournaments_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TournamentWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Tournaments_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TournamentWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Tournaments_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TournamentWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TourneyPlayerWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyPlayerWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyPlayerWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyPlayerWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Tourney", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TourneyWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "User", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GameResultWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameResultWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameResultWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameResultWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "date_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "date_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "value_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "value_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "User", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Team", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Game", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "GameOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "start_date_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "start_date_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "end_date_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "end_date_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sequence_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sequence_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Game", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "start_date", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "end_date", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sequence", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Tourney", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Tourney", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Users", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "UserOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Teams", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "TeamOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Parent", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Game", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Childs", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "GameOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Game", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Results", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameResultWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "GameResultOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GameResult", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Tourney", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date_till", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Tournament", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Tournament", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Players", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TourneyPlayerWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "TourneyPlayerOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TourneyPlayer", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Games", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "GameOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Game", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Tournament", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Tourneys", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TourneyWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "TourneyOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Tourney", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Group", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TournamentGroup", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "TourneyOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date_till_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date_till_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TournamentGroup", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Tournaments", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TournamentWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "TournamentOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Tournament", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "TournamentOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "TourneyPlayerOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TourneyPlayer", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Tourney", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Tourney", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "User", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "GameResultOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "value_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "value_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GameResult", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "User", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Team", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Game", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Game", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "TournamentGroupOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "PositionOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Position", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Users", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "UserOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RouteWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RouteWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RouteWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RouteWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "path_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "path_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "exact", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "exact_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "component_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "component_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Parent", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RouteWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RouteWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RouteWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RouteWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "RouteOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "path_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "path_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "exact_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "exact_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "component_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "component_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Route", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "path", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "exact", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "component", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Parent", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Route", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Childs", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RouteWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "RouteOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Route", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CommentWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CommentWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CommentWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CommentWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "contentText_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "contentText_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "TechnologyLesson", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "contentText_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "contentText_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Technology", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TechnologyWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Users_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Users_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Users_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Comments_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CommentWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Comments_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CommentWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Comments_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CommentWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "contentText_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "contentText_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "site_url", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "site_url_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "site_url_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "site_url_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "site_url_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "site_url_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "site_url_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "site_url_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "site_url_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "site_url_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "site_url_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "site_url_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "site_url_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "site_url_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "UserTechnologies_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "UserTechnologies_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "UserTechnologies_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_from", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_from_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_from_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "date_from_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "date_from_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_from_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_from_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_from_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_till", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_till_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_till_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "date_till_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "date_till_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_till_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_till_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_till_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "UserTechnologyStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "UserTechnologyStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "UserTechnologyStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "status_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "UserTechnologyStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Technology", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TechnologyWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "UserTechnologyStatus", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "PlanToStudy", - "description": "Планирую изучать", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "RefusedToStudy", - "description": "Отказался изучать", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Study", - "description": "Изучаю", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "RarelyUse", - "description": "Иногда использую", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ActiveUse", - "description": "Активно использую", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NoLongerUse", - "description": "Больше не использую", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "TechnologyLessonUserStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "TechnologyLessonUserStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TechnologyLessonUserStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "status_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TechnologyLessonUserStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "completedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "completedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "completedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "completedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "completedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "completedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "completedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "completedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Lesson", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "TechnologyLessonUserStatus", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Accepted", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Completed", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "CommentOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "components_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "components_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "contentText_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "contentText_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Comment", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "components", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "contentText", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TechnologyLesson", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TechnologyLesson", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TechnologyLesson", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "components", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "contentText", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Technology", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Technology", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Users", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "TechnologyLessonUserOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TechnologyLessonUser", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Comments", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CommentWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "CommentOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Comment", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Technology", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "components", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "contentText", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "site_url", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UserTechnologies", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "UserTechnologyOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UserTechnology", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "UserTechnologyOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "components_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "components_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date_from_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date_from_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date_till_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date_till_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UserTechnology", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Technology", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Technology", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "components", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date_from", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date_till", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "UserTechnologyStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "TechnologyLessonUserOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "completedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "completedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TechnologyLessonUser", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Lesson", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TechnologyLesson", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "TechnologyLessonUserStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "completedAt", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "TechnologyLessonOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "components_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "components_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "contentText_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "contentText_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "CareerOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "start_date_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "start_date_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Career", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "start_date", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TestWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TestWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TestWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TestWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "text", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "text_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "text_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "text_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "text_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "text_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "text_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "text_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "text_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "text_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "text_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "text_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "text_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "text_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "quantity", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "quantity_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "quantity_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "quantity_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "quantity_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "quantity_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "quantity_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "quantity_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "date_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "date_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "TestOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "text_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "text_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "quantity_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "quantity_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Test", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "text", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "quantity", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "TechnologyOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "components_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "components_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "contentText_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "contentText_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "site_url_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "site_url_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GalleryWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "WorldWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NoticeWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TagWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "VoteWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GameWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GameResultWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TournamentWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TournamentGroupWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TourneyWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PositionWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskReactionWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamMemberWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TimerWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RouteWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dashedName", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CommentWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CareerWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TestWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "FileWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthBlockWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sequence", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TemplateWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentOldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "username", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GalleryConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GalleryEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateGallery", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PageInfo", - "description": "Information about pagination in a connection.", - "fields": [ - { - "name": "hasNextPage", - "description": "When paginating forwards, are there more items?", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasPreviousPage", - "description": "When paginating backwards, are there more items?", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "startCursor", - "description": "When paginating backwards, the cursor to continue.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "endCursor", - "description": "When paginating forwards, the cursor to continue.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GalleryEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Gallery", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateGallery", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "WorldConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "WorldEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateWorld", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "WorldEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "World", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateWorld", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "NoticeConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "NoticeEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateNotice", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "NoticeEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Notice", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateNotice", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "NotificationTypeConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "NotificationTypeEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateNotificationType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "NotificationTypeEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "NotificationType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateNotificationType", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ResourceTagConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ResourceTagEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateResourceTag", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ResourceTagEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ResourceTag", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateResourceTag", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TagConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TagEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateTag", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TagEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Tag", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateTag", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "VoteConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "VoteEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateVote", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "VoteEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Vote", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateVote", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ChatRoomConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChatRoomEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateChatRoom", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ChatRoomEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChatRoom", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateChatRoom", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GameConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GameEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateGame", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GameEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Game", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateGame", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GameResultConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GameResultEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateGameResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GameResultEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GameResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateGameResult", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TournamentConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TournamentEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateTournament", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TournamentEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Tournament", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateTournament", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TournamentGroupConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TournamentGroupEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateTournamentGroup", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TournamentGroupEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TournamentGroup", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateTournamentGroup", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TourneyConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TourneyEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateTourney", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TourneyEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Tourney", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateTourney", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EthAccountConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EthAccountEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateEthAccount", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EthAccountEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EthAccount", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateEthAccount", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EthContractSourceConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EthContractSourceEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateEthContractSource", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EthContractSourceEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EthContractSource", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateEthContractSource", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EthTransactionConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EthTransactionEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateEthTransaction", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EthTransactionEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EthTransaction", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateEthTransaction", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CallRequestConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CallRequestEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateCallRequest", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CallRequestEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CallRequest", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateCallRequest", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PositionConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PositionEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregatePosition", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PositionEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Position", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregatePosition", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectMemberConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectMemberEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateProjectMember", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectMemberEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectMember", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateProjectMember", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ServiceConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ServiceEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateService", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ServiceEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Service", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateService", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TaskConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TaskEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateTask", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TaskEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Task", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateTask", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TaskReactionConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TaskReactionEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateTaskReaction", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TaskReactionEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TaskReaction", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateTaskReaction", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TeamMemberConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TeamMemberEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateTeamMember", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TeamMemberEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TeamMember", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateTeamMember", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TimerConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TimerEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateTimer", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TimerEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Timer", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateTimer", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RouteConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RouteEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateRoute", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RouteEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Route", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateRoute", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CodeChallengeConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CodeChallengeEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateCodeChallenge", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CodeChallengeEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CodeChallenge", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateCodeChallenge", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CodeChallengeBlockConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CodeChallengeBlockEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateCodeChallengeBlock", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CodeChallengeBlockEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CodeChallengeBlock", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateCodeChallengeBlock", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CodeChallengeCompletionConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CodeChallengeCompletionEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateCodeChallengeCompletion", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CodeChallengeCompletionEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CodeChallengeCompletion", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateCodeChallengeCompletion", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CommentConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CommentEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateComment", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CommentEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Comment", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateComment", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TechnologyLessonConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TechnologyLessonEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateTechnologyLesson", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TechnologyLessonEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TechnologyLesson", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateTechnologyLesson", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CareerConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CareerEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateCareer", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CareerEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Career", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateCareer", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TechnologyLessonUserConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TechnologyLessonUserEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateTechnologyLessonUser", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TechnologyLessonUserEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TechnologyLessonUser", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateTechnologyLessonUser", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UserTechnologyConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UserTechnologyEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateUserTechnology", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UserTechnologyEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UserTechnology", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateUserTechnology", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TestConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TestEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateTest", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TestEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Test", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateTest", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TechnologyConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TechnologyEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateTechnology", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TechnologyEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Technology", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateTechnology", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EthBlockConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EthBlockEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateEthBlock", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EthBlockEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EthBlock", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateEthBlock", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TeamConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TeamEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateTeam", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TeamEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateTeam", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateProject", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateProject", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TemplateConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TemplateEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateTemplate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TemplateEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Template", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateTemplate", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ResourceConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ResourceEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateResource", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ResourceEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Resource", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateResource", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ChatMessageConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChatMessageEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateChatMessage", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ChatMessageEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChatMessage", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateChatMessage", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UserConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UserEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateUser", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UserEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateUser", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ethNet", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isListening", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "peerCount", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "networkType", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EthPersonalAccount", - "description": null, - "fields": [ - { - "name": "address", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "balance", - "description": null, - "args": [ - { - "name": "convert", - "description": null, - "type": { - "kind": "ENUM", - "name": "EthAmountConvert", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ethSyncState", - "description": null, - "fields": [ - { - "name": "startingBlock", - "description": "The block number where the sync started", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "currentBlock", - "description": "The block number where at which block the node currently synced to already", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "highestBlock", - "description": "The estimated block number to sync to", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "knownStates", - "description": "The estimated states to download", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pulledStates", - "description": "The already downloaded states", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthGetBlockWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "hash", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthGetTransactionWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "hash", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Mutation", - "description": null, - "fields": [ - { - "name": "createBlogProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "BlogCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ResourceResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateBlogProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "BlogUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ResourceResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createTopicProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TopicCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ResourceResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateTopicProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TopicUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ResourceResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createCommentProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CommentCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ResourceResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateCommentProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CommentUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ResourceResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createTestProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TestCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TestResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateTestProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TestUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TestWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TestResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ethSigninOrSignup", - "description": "Signin or Signup via Ethereum", - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthRecoverPersonalSignatureDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AuthPayload", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ethConnectAuthAccount", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthRecoverPersonalSignatureDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EthAccountResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createCodeChallengeCompletionProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CodeChallengeCompletionResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateCodeChallengeCompletionProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CodeChallengeCompletionResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fccImportChallengs", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createCareerProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CareerCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CareerResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateCareerProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CareerUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CareerWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CareerResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createUserTechnologyProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UserTechnologyResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateUserTechnologyProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UserTechnologyResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createTechnologyLessonProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TechnologyLessonResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateTechnologyLessonProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TechnologyLessonResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createTechnologyProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TechnologyResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateTechnologyProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TechnologyResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createTechnologyLessonCommentProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonCommentCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CommentResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateTechnologyLessonCommentProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonCommentUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CommentResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createTechnologyLessonUserProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TechnologyLessonUserResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateTechnologyLessonUserProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TechnologyLessonUserResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createPlayer", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PlayerCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Player", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createWorld", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WorldCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "World", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createSettings", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SettingsCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Settings", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createCallRequest", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CallRequestCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CallRequest", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createUser", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatePlayer", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PlayerUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PlayerWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Player", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateWorld", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WorldWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "World", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateSettings", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SettingsUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SettingsWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Settings", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateCallRequest", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CallRequestUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CallRequestWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CallRequest", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateUser", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteGallery", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GalleryWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Gallery", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteWorld", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WorldWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "World", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteNotice", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NoticeWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Notice", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteGame", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Game", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteGameResult", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameResultWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "GameResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteTournament", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TournamentWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Tournament", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteTournamentGroup", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TournamentGroupWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "TournamentGroup", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteTourney", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Tourney", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteProjectMember", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectMember", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteTaskReaction", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "TaskReaction", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteTeamMember", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "TeamMember", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteRoute", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RouteWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Route", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteCodeChallenge", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CodeChallenge", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteCodeChallengeBlock", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CodeChallengeBlock", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteTechnologyLesson", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "TechnologyLesson", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteCareer", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CareerWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Career", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteTechnologyLessonUser", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "TechnologyLessonUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteUserTechnology", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "UserTechnology", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteTest", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TestWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Test", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteFile", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "File", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteTechnology", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Technology", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteTemplate", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TemplateWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Template", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteResource", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Resource", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteUser", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteManyNotices", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BatchPayload", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteManyRoutes", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RouteWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BatchPayload", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteManyTests", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TestWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BatchPayload", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "runCommand", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RunCommandInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "login", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LoginUserInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "McJsAuthPayload", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createFileProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "FileResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateFileProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "FileResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "singleUpload", - "description": null, - "args": [ - { - "name": "file", - "description": "Deprecated. Use SingleUploadInput instead.", - "type": { - "kind": "SCALAR", - "name": "Upload", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SingleUploadInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "File", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "multipleUpload", - "description": null, - "args": [ - { - "name": "files", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Upload", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "File", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createSmsMessageProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SmsMessageCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SmsMessageResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createSmsProviderProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SmsProviderCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SmsProviderResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateSmsProviderProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SmsProviderUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SmsProviderWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SmsProviderResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signup", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AuthPayload", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signin", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SigninDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AuthPayload", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createUserProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UserResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateUserProcessor", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UserResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "resetPasswordProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResetPasswordInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AuthPayload", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createResetPasswordProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResetPasswordCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ResetPasswordResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createTemplateProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TemplateCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TemplateResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateTemplateProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TemplateUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TemplateWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TemplateResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createGalleryProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GalleryCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GalleryResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateGalleryProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GalleryUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GalleryWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GalleryResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createResourceProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ResourceResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateResourceProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ResourceResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createGameProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GameResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateGameProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GameResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createGameResultProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameResultCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GameResultResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateGameResultProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameResultUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameResultWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GameResultResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createTournamentProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TournamentCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TournamentResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateTournamentProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TournamentUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TournamentWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TournamentResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createTournamentGroupProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TournamentGroupCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TournamentGroupResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateTournamentGroupProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TournamentGroupUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TournamentGroupWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TournamentGroupResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createTourneyProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TourneyResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateTourneyProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TourneyResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createChatRoomProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChatRoomResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateChatRoomProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChatRoomResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "inviteChatRoomProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInviteInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "joinChatRoom", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ChatRoom", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "leaveChatRoom", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ChatRoom", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createChatMessageReadedProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChatMessageReadedResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createChatMessageProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChatMessageResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateChatMessageProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChatMessageResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "markAsReadedChatMessage", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createEthContractSourceProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EthContractSourceResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateEthContractSourceProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EthContractSourceResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ethUnlockPersonalAccount", - "description": null, - "args": [ - { - "name": "address", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "password", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "duration", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createEthAccountProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EthAccountResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateEthAccountProcessor", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EthAccountResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createEthTransactionProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EthTransactionResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ethRecoverPersonalSignature", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthRecoverPersonalSignatureDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createCallRequestProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CallRequestCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CallRequestResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createProjectProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateProjectProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createProjectMemberProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectMemberResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateProjectMemberProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectMemberResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createTaskProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TaskResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateTaskProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TaskResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createTaskReactionProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TaskReactionResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateTaskReactionProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TaskReactionResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createTimerProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TimerCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TimerResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateTimerProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TimerWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TimerResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createTeamProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TeamResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateTeamProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TeamResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createTeamMemberProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TeamMemberResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateTeamMemberProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TeamMemberResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createServiceProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ServiceResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateServiceProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ServiceResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createPositionProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PositionResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatePositionProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PositionWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PositionResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createRouteProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RouteCreateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RouteResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateRouteProcessor", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RouteUpdateInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RouteWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RouteResponse", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "BlogCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "longtitle", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "content", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "published", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ResourceResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Resource", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Error", - "description": null, - "fields": [ - { - "name": "key", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "BlogUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "longtitle", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "content", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "published", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TopicCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "longtitle", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "content", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "components", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "published", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "topic_tags", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "blogID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CodeChallenge", - "description": "Урок, для которого создается топик", - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCreateOneWithoutTopicInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uri", - "description": "УРЛ страницы", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCreateOneWithoutTopicInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TopicUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "longtitle", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "content", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "components", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "published", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "blogID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CommentCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "text", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "content", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "topicID", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CommentUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "content", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TestCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "text", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "quantity", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TestResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Test", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TestUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "text", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "quantity", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthRecoverPersonalSignatureDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "from", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "message", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "signature", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AuthPayload", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EthAccountResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "EthAccount", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "CodeChallenge", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCreateOneWithoutCompletionsInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCreateOneWithoutCompletionsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CodeChallengeCompletionResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "CodeChallengeCompletion", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "content", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "success", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CareerCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "start_date", - "description": "Дата начала карьеры", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CareerResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Career", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CareerUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "start_date", - "description": "Дата начала карьеры", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "components", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_from", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_till", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "UserTechnologyStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Technology", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyCreateOneWithoutUserTechnologiesInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyCreateOneWithoutUserTechnologiesInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TechnologyWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UserTechnologyResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "UserTechnology", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "components", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_from", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_till", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "UserTechnologyStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Technology", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TechnologyUpdateOneRequiredWithoutUserTechnologiesInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyUpdateOneRequiredWithoutUserTechnologiesInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TechnologyWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "components", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Technology", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TechnologyCreateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Users", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserCreateManyWithoutLessonInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Comments", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CommentCreateManyWithoutTechnologyLessonInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyCreateOneInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TechnologyWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserCreateManyWithoutLessonInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CommentCreateManyWithoutTechnologyLessonInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CommentWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TechnologyLessonResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TechnologyLesson", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "components", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Technology", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TechnologyUpdateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Users", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserUpdateManyWithoutLessonInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Comments", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CommentUpdateManyWithoutTechnologyLessonInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyUpdateOneInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TechnologyWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserUpdateManyWithoutLessonInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserScalarWhereInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "TechnologyLessonUserStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "TechnologyLessonUserStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TechnologyLessonUserStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "status_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TechnologyLessonUserStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "completedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "completedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "completedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "completedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "completedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "completedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "completedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "completedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "TechnologyLessonUserStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "completedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CommentUpdateManyWithoutTechnologyLessonInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CommentWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CommentWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CommentWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CommentUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CommentScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CommentUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CommentScalarWhereInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CommentUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CommentScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CommentScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CommentScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CommentScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "contentText_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "contentText_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CommentUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "components", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "components", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "site_url", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "UserTechnologies", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyCreateManyWithoutTechnologyInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyCreateManyWithoutTechnologyInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TechnologyResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Technology", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "components", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "site_url", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "UserTechnologies", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyUpdateManyWithoutTechnologyInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyUpdateManyWithoutTechnologyInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyScalarWhereInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_from", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_from_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_from_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "date_from_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "date_from_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_from_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_from_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_from_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_till", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_till_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_till_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "date_till_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "date_till_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_till_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_till_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_till_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "UserTechnologyStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "UserTechnologyStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "UserTechnologyStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "status_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "UserTechnologyStatus", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "components", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_from", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_till", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "UserTechnologyStatus", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonCommentCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "components", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "TechnologyLesson", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonCreateOneWithoutCommentsInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonCreateOneWithoutCommentsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CommentResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Comment", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonCommentUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "components", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "TechnologyLessonUserStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "completedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Lesson", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonCreateOneWithoutUsersInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonCreateOneWithoutUsersInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TechnologyLessonUserResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TechnologyLessonUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "TechnologyLessonUserStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "completedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Lesson", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUpdateOneRequiredWithoutUsersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUpdateOneRequiredWithoutUsersInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PlayerCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "worldId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gamemode", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "Gamemode", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "WorldCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "seed", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WorldType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "time", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timeChanger", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "days", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "lastPlayed", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutWorldsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "changedBlocks", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockCreateManyWithoutWorldInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "players", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PlayerCreateManyWithoutWorldInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "messages", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "MessageCreateManyWithoutWorldInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gamemode", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "Gamemode", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutWorldsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "BlockCreateManyWithoutWorldInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "BlockWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "BlockWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "representation", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PlayerCreateManyWithoutWorldInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PlayerWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PlayerWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "MessageCreateManyWithoutWorldInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MessageWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "MessageWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SettingsCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "renderDistance", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CallRequestCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "called_descriptions", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "caller_descriptions", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "CallRequestStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Called", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "Caller", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Room", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateOneWithoutCallRequestsInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateOneWithoutCallRequestsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "username", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fullname", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "marketplaceToken", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PlayerUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "isAdmin", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gamemode", - "description": null, - "type": { - "kind": "ENUM", - "name": "Gamemode", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lastLogin", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "x", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "y", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "z", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dirx", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "diry", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "world", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateOneRequiredWithoutPlayersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "inventory", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "InventoryUpdateOneWithoutPlayerInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "cursor", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateOneRequiredWithoutPlayersInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "WorldWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "InventoryUpdateOneWithoutPlayerInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "InventoryWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "InventoryWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "seed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "WorldType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "time", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timeChanger", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "days", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lastPlayed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutWorldsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "changedBlocks", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockUpdateManyWithoutWorldInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "players", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PlayerUpdateManyWithoutWorldInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "messages", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "MessageUpdateManyWithoutWorldInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutWorldsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "BlockUpdateManyWithoutWorldInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "BlockWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "BlockWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "BlockWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "BlockUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "BlockScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "BlockUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "BlockScalarWhereInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "BlockUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "BlockScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "BlockScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "BlockScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "BlockScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "representation", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "representation_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "representation_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "representation_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "representation_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "representation_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "representation_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "representation_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "representation_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "representation_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "representation_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "representation_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "representation_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "representation_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "type_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "type_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "x", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "x_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "x_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "x_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "x_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "x_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "x_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "x_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "y", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "y_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "y_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "y_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "y_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "y_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "y_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "y_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "z", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "z_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "z_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "z_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "z_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "z_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "z_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "z_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "BlockUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "representation", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "x", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "y", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "z", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PlayerUpdateManyWithoutWorldInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PlayerWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PlayerWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PlayerWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PlayerUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PlayerScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PlayerUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PlayerScalarWhereInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PlayerUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PlayerScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PlayerScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PlayerScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PlayerScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAdmin", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAdmin_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gamemode", - "description": null, - "type": { - "kind": "ENUM", - "name": "Gamemode", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gamemode_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "Gamemode", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gamemode_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "Gamemode", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "gamemode_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "Gamemode", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "lastLogin", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lastLogin_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lastLogin_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "lastLogin_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "lastLogin_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lastLogin_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lastLogin_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lastLogin_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "x", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "x_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "x_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "x_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "x_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "x_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "x_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "x_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "y", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "y_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "y_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "y_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "y_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "y_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "y_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "y_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "z", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "z_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "z_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "z_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "z_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "z_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "z_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "z_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dirx", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dirx_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dirx_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "dirx_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "dirx_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dirx_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dirx_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dirx_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "diry", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "diry_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "diry_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "diry_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "diry_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "diry_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "diry_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "diry_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PlayerUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "isAdmin", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gamemode", - "description": null, - "type": { - "kind": "ENUM", - "name": "Gamemode", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lastLogin", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "x", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "y", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "z", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dirx", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "diry", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "MessageUpdateManyWithoutWorldInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MessageWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MessageWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MessageWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MessageUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MessageScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "MessageUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MessageScalarWhereInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MessageUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "MessageScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MessageScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MessageScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MessageScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "MessageType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "MessageType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MessageType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "type_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MessageType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "sender", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "sender_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "sender_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "body_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "body_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "MessageUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "MessageType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SettingsUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "renderDistance", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SettingsWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CallRequestUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "called_descriptions", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "caller_descriptions", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "CallRequestStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Called", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Caller", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Room", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateOneWithoutCallRequestsInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateOneWithoutCallRequestsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CallRequestWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "username", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fullname", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ethWalletPK", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ethWalletPKSendEmail", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "NotificationTypes", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutUsersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "marketplaceToken", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Groups", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyWithoutUsersInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutUsersInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeScalarWhereInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "code_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "code_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comment", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comment_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comment_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "comment_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "comment_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comment_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comment_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comment_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comment_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comment_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comment_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comment_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comment_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comment_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "oldID_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "oldID_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comment", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyWithoutUsersInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserGroupWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserGroupWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserGroupWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserGroupScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserGroupWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserGroupScalarWhereInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserGroupScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserGroupScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserGroupScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserGroupScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "BatchPayload", - "description": null, - "fields": [ - { - "name": "count", - "description": "The number of nodes that have been affected by the Batch operation.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Long", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RunCommandInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "playerId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "worldId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "command", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LoginUserInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "email", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "password", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "McJsAuthPayload", - "description": null, - "fields": [ - { - "name": "token", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "FileCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filename", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mimetype", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "encoding", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "hash", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "size", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Gallery", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GalleryCreateOneWithoutFilesInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutFilesInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ImageResource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutImageInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GalleryCreateOneWithoutFilesInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GalleryWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutFilesInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutImageInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "FileResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "File", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "FileUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "path", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filename", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mimetype", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "encoding", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "size", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Gallery", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GalleryUpdateOneWithoutFilesInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutFilesInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ImageResource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutImageInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GalleryUpdateOneWithoutFilesInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GalleryWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutFilesInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutImageInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Upload", - "description": "The `Upload` scalar type represents a file upload.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SingleUploadInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "file", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Upload", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "directory", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SmsMessageCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "from", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "text", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "deletOnSend", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "recipients", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SmsMessageCreaterecipientsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Provider", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SmsProviderCreateOneInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Status", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusCreateOneWithoutSmsMessageInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SmsMessageCreaterecipientsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SmsProviderCreateOneInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SmsProviderWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SmsProviderWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusCreateOneWithoutSmsMessageInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SmsMessageResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "SmsMessage", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SmsMessage", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "from", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "text", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "recipients", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Provider", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SmsProvider", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deletOnSend", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Status", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "LetsadsSmsMessageStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SmsProvider", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "credentials", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreatedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LetsadsSmsMessageStatus", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "LetsadsSmsMessageStatusEnum", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errorCode", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "LetsadsSmsMessageStatusErrorCodeEnum", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SmsMessage", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SmsMessage", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Items", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "LetsadsSmsMessageStatusItemOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LetsadsSmsMessageStatusItem", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "LetsadsSmsMessageStatusEnum", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Complete", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Error", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "LetsadsSmsMessageStatusErrorCodeEnum", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "NO_DATA", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "WRONG_DATA_FORMAT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "REQUEST_FORMAT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTH_DATA", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "API_DISABLED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "USER_NOT_MODERATED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INCORRECT_FROM", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INVALID_FROM", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MESSAGE_TOO_LONG", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NO_MESSAGE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MAX_MESSAGES_COUNT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NOT_ENOUGH_MONEY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNKNOWN_ERROR", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sms_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sms_id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sms_id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "sms_id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "sms_id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sms_id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sms_id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sms_id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Status", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "ENUM", - "name": "LetsadsSmsMessageStatusEnum", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "LetsadsSmsMessageStatusEnum", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "LetsadsSmsMessageStatusEnum", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "LetsadsSmsMessageStatusEnum", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "description_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "description_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "errorCode", - "description": null, - "type": { - "kind": "ENUM", - "name": "LetsadsSmsMessageStatusErrorCodeEnum", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "errorCode_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "LetsadsSmsMessageStatusErrorCodeEnum", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "errorCode_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "LetsadsSmsMessageStatusErrorCodeEnum", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "errorCode_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "LetsadsSmsMessageStatusErrorCodeEnum", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "SmsMessage", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SmsMessageWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Items_every", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Items_some", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Items_none", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SmsMessageWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SmsMessageWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SmsMessageWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SmsMessageWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "from", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "from_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "from_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "from_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "from_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "from_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "from_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "from_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "from_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "from_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "from_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "from_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "from_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "from_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "text", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "text_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "text_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "text_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "text_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "text_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "text_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "text_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "text_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "text_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "text_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "text_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "text_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "text_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "deletOnSend", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "deletOnSend_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Provider", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SmsProviderWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Status", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SmsProviderWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SmsProviderWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SmsProviderWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SmsProviderWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "LetsadsSmsMessageStatusItemOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sms_id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sms_id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LetsadsSmsMessageStatusItem", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sms_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Status", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "LetsadsSmsMessageStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SmsProviderCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "credentials", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SmsProviderResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "SmsProvider", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SmsProviderUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "credentials", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SigninDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "password", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UserResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResetPasswordInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "code", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResetPasswordCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "validTill", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "User", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ResetPasswordResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ResetPassword", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ResetPassword", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "password", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "validTill", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "User", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TemplateCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "props", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "components", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "vars", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Parent", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TemplateCreateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Project", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaProject", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutPrismaTemplatesInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TemplateCreateOneInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TemplateWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutPrismaTemplatesInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TemplateResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Template", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TemplateUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "externalKey", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "props", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "components", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "vars", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Parent", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TemplateUpdateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Project", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaProject", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutPrismaTemplatesInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TemplateUpdateOneInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TemplateWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutPrismaTemplatesInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GalleryCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Files", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateManyWithoutGalleryInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Resource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutGalleriesInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "FileCreateManyWithoutGalleryInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutGalleriesInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GalleryResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Gallery", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GalleryUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Files", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithoutGalleryInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Resource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutGalleriesInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithoutGalleryInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileScalarWhereInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "FileScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "path_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "path_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filename", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filename_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filename_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "filename_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "filename_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filename_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filename_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filename_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filename_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filename_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filename_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filename_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filename_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filename_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mimetype", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mimetype_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mimetype_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mimetype_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mimetype_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mimetype_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mimetype_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mimetype_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mimetype_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mimetype_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mimetype_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mimetype_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mimetype_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mimetype_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "encoding", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "encoding_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "encoding_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "encoding_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "encoding_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "encoding_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "encoding_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "encoding_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "encoding_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "encoding_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "encoding_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "encoding_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "encoding_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "encoding_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "hash_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "hash_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "size", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "size_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "size_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "size_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "size_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "size_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "size_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "size_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "rank_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "rank_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "FileUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "path", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filename", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mimetype", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "encoding", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "size", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutGalleriesInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "ResourceType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "longtitle", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "content", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "published", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "deleted", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hidemenu", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "searchable", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isfolder", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rating", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "positiveVotesCount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "negativeVotesCount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "neutralVotesCount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mockUpdate", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "components", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentOldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "class_key", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "template", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutResourcesInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Parent", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutChildsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutParentInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaProject", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutPrismaResourcesInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Topic", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutCommentsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Comments", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutTopicInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Votes", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutResourceInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Tags", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutResourceInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Blog", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CodeChallenge", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCreateOneWithoutTopicInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Galleries", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GalleryCreateManyWithoutResourceInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "EthAccount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutResourcesInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Image", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateOneWithoutImageResourceInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Service", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCreateOneWithoutResourceInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Team", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutResourceInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Project", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutResourceInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutResourcesInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutChildsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutParentInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutPrismaResourcesInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutCommentsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutTopicInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutResourceInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "VoteWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutResourceInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GalleryCreateManyWithoutResourceInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GalleryWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutResourcesInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "FileCreateOneWithoutImageResourceInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FileWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ServiceCreateOneWithoutResourceInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutResourceInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutResourceInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blogID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "ResourceType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "longtitle", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "content", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "published", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "deleted", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hidemenu", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "searchable", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isfolder", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rating", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "positiveVotesCount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "negativeVotesCount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "neutralVotesCount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mockUpdate", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "components", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentOldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "class_key", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "template", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutResourcesInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Parent", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutChildsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutParentInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaProject", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutPrismaResourcesInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Topic", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutCommentsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Comments", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutTopicInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Votes", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutResourceInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Tags", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutResourceInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Blog", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CodeChallenge", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeUpdateOneWithoutTopicInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Galleries", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GalleryUpdateManyWithoutResourceInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "EthAccount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutResourcesInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Image", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateOneWithoutImageResourceInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Service", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceUpdateOneWithoutResourceInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Team", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutResourceInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Project", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutResourceInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutResourcesInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutChildsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutParentInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceScalarWhereInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "code_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "code_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "ResourceType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "ResourceType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ResourceType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "type_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ResourceType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "longtitle", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "longtitle_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "longtitle_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "longtitle_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "longtitle_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "longtitle_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "longtitle_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "longtitle_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "longtitle_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "longtitle_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "longtitle_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "longtitle_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "longtitle_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "longtitle_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "contentText_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "contentText_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "published", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "published_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "deleted", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "deleted_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hidemenu", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hidemenu_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "searchable", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "searchable_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uri_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uri_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "uri_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "uri_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uri_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uri_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uri_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uri_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uri_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uri_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uri_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uri_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uri_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isfolder", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isfolder_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rating", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rating_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rating_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "rating_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "rating_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rating_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rating_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rating_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "positiveVotesCount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "positiveVotesCount_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "positiveVotesCount_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "positiveVotesCount_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "positiveVotesCount_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "positiveVotesCount_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "positiveVotesCount_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "positiveVotesCount_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "negativeVotesCount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "negativeVotesCount_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "negativeVotesCount_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "negativeVotesCount_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "negativeVotesCount_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "negativeVotesCount_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "negativeVotesCount_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "negativeVotesCount_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "neutralVotesCount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "neutralVotesCount_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "neutralVotesCount_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "neutralVotesCount_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "neutralVotesCount_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "neutralVotesCount_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "neutralVotesCount_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "neutralVotesCount_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "oldID_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "oldID_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mockUpdate", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mockUpdate_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mockUpdate_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mockUpdate_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mockUpdate_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mockUpdate_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mockUpdate_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mockUpdate_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentOldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentOldID_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentOldID_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "commentOldID_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "commentOldID_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentOldID_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentOldID_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentOldID_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "class_key", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "class_key_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "class_key_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "class_key_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "class_key_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "class_key_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "class_key_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "class_key_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "class_key_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "class_key_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "class_key_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "class_key_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "class_key_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "class_key_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "template", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "template_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "template_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "template_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "template_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "template_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "template_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "template_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "ResourceType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "longtitle", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "content", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "published", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "deleted", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hidemenu", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "searchable", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isfolder", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rating", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "positiveVotesCount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "negativeVotesCount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "neutralVotesCount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mockUpdate", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "components", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentOldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "class_key", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "template", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutPrismaResourcesInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutCommentsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutTopicInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutResourceInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "VoteWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "VoteWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "VoteWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "VoteScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "VoteScalarWhereInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "VoteScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "VoteScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "VoteScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "VoteScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "value_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "value_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "value", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutResourceInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagScalarWhereInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceTagScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "TagStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "TagStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TagStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "status_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TagStatus", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "TagStatus", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeUpdateOneWithoutTopicInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GalleryUpdateManyWithoutResourceInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GalleryWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GalleryWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GalleryWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GalleryUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GalleryScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GalleryUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GalleryScalarWhereInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GalleryUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GalleryScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GalleryScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GalleryScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GalleryScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GalleryUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutResourcesInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "FileUpdateOneWithoutImageResourceInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FileWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ServiceUpdateOneWithoutResourceInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutResourceInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutResourceInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GameCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "start_date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "end_date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sequence", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Tourney", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TourneyCreateOneWithoutGamesInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Users", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Teams", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Parent", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameCreateOneWithoutChildsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameCreateManyWithoutParentInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Results", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameResultCreateManyWithoutGameInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TourneyCreateOneWithoutGamesInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TourneyWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GameCreateOneWithoutChildsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GameCreateManyWithoutParentInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GameResultCreateManyWithoutGameInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameResultWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GameResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Game", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GameUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "start_date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "end_date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sequence", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Tourney", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TourneyUpdateOneWithoutGamesInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Users", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Teams", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Parent", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameUpdateOneWithoutChildsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameUpdateManyWithoutParentInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Results", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameResultUpdateManyWithoutGameInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TourneyUpdateOneWithoutGamesInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TourneyWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserScalarWhereInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "username", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "username_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "username_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "username_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "username_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "username_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "username_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "username_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "username_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "username_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "username_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "username_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "username_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "username_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "email_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "email_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "phone_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "phone_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "showEmail", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "showEmail_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "showPhone", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "showPhone_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "password_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "password_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fullname", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fullname_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fullname_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "fullname_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "fullname_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fullname_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fullname_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fullname_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fullname_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fullname_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fullname_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fullname_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fullname_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fullname_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "image_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "image_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "address_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "address_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "active", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "active_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "activated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "activated_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "deleted", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "deleted_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hidden", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hidden_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sudo", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sudo_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "marketplaceToken", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "marketplaceToken_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "marketplaceToken_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "marketplaceToken_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "marketplaceToken_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "marketplaceToken_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "marketplaceToken_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "marketplaceToken_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "marketplaceToken_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "marketplaceToken_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "marketplaceToken_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "marketplaceToken_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "marketplaceToken_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "marketplaceToken_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptChatMessageAnonymous", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptChatMessageAnonymous_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptNewChatRoomAnonymous", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptNewChatRoomAnonymous_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptNewChatRoom", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptNewChatRoom_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "oldID_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "oldID_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "username", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "showEmail", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "showPhone", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fullname", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "active", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "activated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "deleted", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hidden", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sudo", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "marketplaceToken", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptChatMessageAnonymous", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptNewChatRoomAnonymous", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptNewChatRoom", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamScalarWhereInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "TeamStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "TeamStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TeamStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "status_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TeamStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "oldID_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "oldID_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "address_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "address_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "website", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "website_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "website_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "website_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "website_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "website_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "website_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "website_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "website_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "website_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "website_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "website_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "website_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "website_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "email_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "email_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "phone_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "phone_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "TeamStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "website", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GameUpdateOneWithoutChildsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GameUpdateManyWithoutParentInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GameUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameScalarWhereInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GameScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "start_date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "start_date_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "start_date_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "start_date_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "start_date_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "start_date_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "start_date_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "start_date_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "end_date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "end_date_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "end_date_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "end_date_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "end_date_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "end_date_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "end_date_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "end_date_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sequence", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sequence_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sequence_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "sequence_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "sequence_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sequence_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sequence_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sequence_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GameUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "start_date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "end_date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sequence", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GameResultUpdateManyWithoutGameInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameResultWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameResultWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameResultWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameResultUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameResultScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GameResultUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameResultScalarWhereInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameResultUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GameResultScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameResultScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameResultScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameResultScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "date_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "date_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "value_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "value_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GameResultUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GameResultCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "User", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Team", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Game", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameCreateOneWithoutResultsInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamCreateOneInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GameCreateOneWithoutResultsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GameResultResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "GameResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GameResultUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "User", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Team", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Game", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameUpdateOneRequiredWithoutResultsInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GameUpdateOneRequiredWithoutResultsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TournamentCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Tourneys", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TourneyCreateManyWithoutTournamentInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Group", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TournamentGroupCreateOneWithoutTournamentsInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TourneyCreateManyWithoutTournamentInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TournamentGroupCreateOneWithoutTournamentsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TournamentGroupWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TournamentResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Tournament", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TournamentUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Tourneys", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TourneyUpdateManyWithoutTournamentInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Group", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TournamentGroupUpdateOneWithoutTournamentsInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TourneyUpdateManyWithoutTournamentInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TourneyUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyScalarWhereInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TourneyScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "code_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "code_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "date_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "date_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_till", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_till_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_till_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "date_till_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "date_till_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_till_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_till_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_till_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TourneyUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_till", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TournamentGroupUpdateOneWithoutTournamentsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TournamentGroupWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TournamentGroupCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Tournaments", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TournamentCreateManyWithoutGroupInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TournamentCreateManyWithoutGroupInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TournamentWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TournamentGroupResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TournamentGroup", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TournamentGroupUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Tournaments", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TournamentUpdateManyWithoutGroupInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TournamentUpdateManyWithoutGroupInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TournamentWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TournamentWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TournamentWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TournamentUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TournamentScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TournamentUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TournamentScalarWhereInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TournamentUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TournamentScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TournamentScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TournamentScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TournamentScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "code_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "code_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TournamentUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TourneyCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_till", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Tournament", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TournamentCreateOneWithoutTourneysInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Players", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TourneyPlayerCreateManyWithoutTourneyInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Games", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameCreateManyWithoutTourneyInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TournamentCreateOneWithoutTourneysInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TournamentWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TourneyPlayerCreateManyWithoutTourneyInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyPlayerWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TourneyPlayerWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GameCreateManyWithoutTourneyInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TourneyResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Tourney", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TourneyUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_till", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Tournament", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TournamentUpdateOneWithoutTourneysInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Players", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TourneyPlayerUpdateManyWithoutTourneyInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Games", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameUpdateManyWithoutTourneyInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TournamentUpdateOneWithoutTourneysInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TournamentWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TourneyPlayerUpdateManyWithoutTourneyInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyPlayerWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyPlayerWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyPlayerWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyPlayerScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TourneyPlayerScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyPlayerScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyPlayerScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyPlayerScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GameUpdateManyWithoutTourneyInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "Members", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutRoomsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isPublic", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowAnonymous", - "description": "Разрешается писать анонимным пользователям", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sandbox", - "description": "Флаг песочницы (в эту комнату прилетают сообщения от анонимных пользователей)", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutRoomsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ChatRoomResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ChatRoom", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Members", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutRoomsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isPublic", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowAnonymous", - "description": "Разрешается писать анонимным пользователям", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sandbox", - "description": "Флаг песочницы (в эту комнату прилетают сообщения от анонимных пользователей)", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutRoomsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInviteInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "User", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "Message", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateOneWithoutReadedByInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateOneWithoutReadedByInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ChatMessageReadedResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ChatMessageReaded", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "content", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Room", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateOneWithoutMessagesInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateOneWithoutMessagesInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "to", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ChatMessageResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ChatMessage", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "content", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "bytecode", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "abi", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EthContractSourceResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "EthContractSource", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "bytecode", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "abi", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "EthAccountType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "bytecode", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "abi", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ContractSource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateOneWithoutAccountsInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateOneWithoutAccountsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "EthAccountType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "bytecode", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "abi", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ContractSource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateOneWithoutAccountsInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateOneWithoutAccountsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthTransactionCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "privateKey", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "EthTransactionType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amount", - "description": "In ether value, not wei", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gasPrice", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contractSourceId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EthTransactionResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "EthTransaction", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CallRequestResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "CallRequest", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "domain", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sequence", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "content", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "ProjectStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "public", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "ProjectType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaTemplates", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TemplateCreateManyWithoutPrismaProjectInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaUsers", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutPrismaProjectsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaResources", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutPrismaProjectInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Members", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutProjectInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutProjectsCreatedInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ProjectTasks", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskCreateManyWithoutProjectInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Team", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutProjectsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Customers", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutOrderedProjectsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ChatRoom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateOneWithoutProjectInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Image", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Resource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutProjectInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "EthAccounts", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutProjectInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TemplateCreateManyWithoutPrismaProjectInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TemplateWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutPrismaProjectsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutPrismaProjectInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutProjectInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutProjectsCreatedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskCreateManyWithoutProjectInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutProjectsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutOrderedProjectsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateOneWithoutProjectInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "FileCreateOneInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FileWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutProjectInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutProjectInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sequence", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "content", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "ProjectStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "public", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "ProjectType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaTemplates", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TemplateUpdateManyWithoutPrismaProjectInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaUsers", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutPrismaProjectsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaResources", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutPrismaProjectInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Members", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutProjectInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutProjectsCreatedInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ProjectTasks", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskUpdateManyWithoutProjectInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Team", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutProjectsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Customers", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutOrderedProjectsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ChatRoom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateOneWithoutProjectInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Image", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Resource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutProjectInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "EthAccounts", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutProjectInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TemplateUpdateManyWithoutPrismaProjectInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TemplateWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TemplateWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TemplateWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TemplateUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TemplateScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TemplateUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TemplateScalarWhereInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TemplateUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TemplateScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TemplateScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TemplateScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TemplateScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "externalKey_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "externalKey_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "description_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "description_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "component_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "component_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "rank_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "rank_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TemplateUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "externalKey", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "props", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "components", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "vars", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutPrismaProjectsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutPrismaProjectInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutProjectInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberScalarWhereInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "ProjectMemberStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "ProjectMemberStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProjectMemberStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "status_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProjectMemberStatus", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "ProjectMemberStatus", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutProjectsCreatedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskUpdateManyWithoutProjectInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutProjectsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutOrderedProjectsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateOneWithoutProjectInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "FileUpdateOneInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FileWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutProjectInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutProjectInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountScalarWhereInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "address_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "address_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "EthAccountType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "EthAccountType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "EthAccountType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "type_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "EthAccountType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "source", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "source_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "source_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "bytecode", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "bytecode_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "bytecode_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "bytecode_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "bytecode_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "bytecode_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "bytecode_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "bytecode_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "bytecode_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "bytecode_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "bytecode_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "bytecode_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "bytecode_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "bytecode_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "EthAccountType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "bytecode", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "abi", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "ProjectMemberStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Project", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutMembersInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "User", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutProjectsInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "Services", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCreateManyWithoutProjectsInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutMembersInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutProjectsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ServiceCreateManyWithoutProjectsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectMemberResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectMember", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "ProjectMemberStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Project", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneRequiredWithoutMembersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "User", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutProjectsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Services", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceUpdateManyWithoutProjectsInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneRequiredWithoutMembersInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutProjectsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ServiceUpdateManyWithoutProjectsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ServiceUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceScalarWhereInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ServiceScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "description_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "description_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "code_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "code_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "rank_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "rank_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "oldID_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "oldID_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ServiceUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "content", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "TaskStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startDatePlaning", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endDatePlaning", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startDate", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endDate", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "TaskProjects", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskCreateManyWithoutTaskInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Members", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutTaskInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Parent", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateOneWithoutChildsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateManyWithoutParentInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "RelatedFrom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateManyWithoutRelatedToInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "RelatedTo", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateManyWithoutRelatedFromInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Timers", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutTaskInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Reactions", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutTaskInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ChatRoom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateOneWithoutTaskInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CodeChallengeCompletion", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateOneWithoutTaskInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Project", - "description": "Custom field. Connect Project", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutProjectTasksInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskCreateManyWithoutTaskInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutTaskInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskMemberWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskCreateOneWithoutChildsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskCreateManyWithoutParentInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskCreateManyWithoutRelatedToInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskCreateManyWithoutRelatedFromInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutTaskInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TimerWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutTaskInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateOneWithoutTaskInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateOneWithoutTaskInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutProjectTasksInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TaskResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Task", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "content", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "TaskStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startDatePlaning", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endDatePlaning", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startDate", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endDate", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "TaskProjects", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskUpdateManyWithoutTaskInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Members", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutTaskInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Parent", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateOneWithoutChildsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyWithoutParentInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "RelatedFrom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyWithoutRelatedToInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "RelatedTo", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyWithoutRelatedFromInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Timers", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutTaskInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Reactions", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutTaskInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ChatRoom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateOneWithoutTaskInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CodeChallengeCompletion", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateOneWithoutTaskInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskUpdateManyWithoutTaskInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutTaskInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberScalarWhereInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskMemberScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "TaskMemberStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "TaskMemberStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TaskMemberStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "status_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TaskMemberStatus", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "TaskMemberStatus", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateOneWithoutChildsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyWithoutParentInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskScalarWhereInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "description_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "description_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "TaskStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "TaskStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TaskStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "status_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TaskStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "startDatePlaning", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startDatePlaning_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startDatePlaning_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "startDatePlaning_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "startDatePlaning_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startDatePlaning_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startDatePlaning_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startDatePlaning_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endDatePlaning", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endDatePlaning_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endDatePlaning_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "endDatePlaning_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "endDatePlaning_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endDatePlaning_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endDatePlaning_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endDatePlaning_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startDate", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startDate_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startDate_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "startDate_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "startDate_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startDate_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startDate_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startDate_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endDate", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endDate_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endDate_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "endDate_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "endDate_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endDate_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endDate_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endDate_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "content", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "TaskStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startDatePlaning", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endDatePlaning", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startDate", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endDate", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyWithoutRelatedToInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyWithoutRelatedFromInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutTaskInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TimerWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TimerWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TimerWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TimerScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TimerScalarWhereInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TimerScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TimerScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TimerScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TimerScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stopedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stopedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stopedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "stopedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "stopedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stopedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stopedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stopedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "stopedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutTaskInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionScalarWhereInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskReactionScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "TaskReactionType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "TaskReactionType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TaskReactionType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "type_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TaskReactionType", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "TaskReactionType", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateOneWithoutTaskInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateOneWithoutTaskInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "TaskReactionType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutTasksReactionsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Task", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateOneWithoutReactionsInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutTasksReactionsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskCreateOneWithoutReactionsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TaskReactionResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TaskReaction", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "TaskReactionType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutTasksReactionsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Task", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateOneRequiredWithoutReactionsInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutTasksReactionsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateOneRequiredWithoutReactionsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TimerCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stopedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutTimersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Task", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateOneWithoutTimersInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutTimersInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskCreateOneWithoutTimersInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TimerResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Timer", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "stopedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutTimersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Task", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateOneRequiredWithoutTimersInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutTimersInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateOneRequiredWithoutTimersInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "TeamStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "website", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Parent", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutChildsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutParentInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutTeamsCreatedInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Members", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutTeamInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Projects", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutTeamInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "OrderedProjects", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCustomersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Resource", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutTeamInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutChildsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutParentInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutTeamsCreatedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutTeamInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutTeamInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCustomersInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutTeamInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TeamResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "TeamStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "website", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Parent", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutChildsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutParentInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutTeamsCreatedInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Members", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutTeamInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Projects", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutTeamInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "OrderedProjects", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCustomersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Resource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneRequiredWithoutTeamInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutChildsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutParentInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutTeamsCreatedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutTeamInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberScalarWhereInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamMemberScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "TeamMemberStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "TeamMemberStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TeamMemberStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "status_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TeamMemberStatus", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "TeamMemberStatus", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutTeamInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectScalarWhereInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "domain_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "domain_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "description_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "description_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "url_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "url_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sequence", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sequence_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sequence_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "sequence_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "sequence_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sequence_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sequence_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sequence_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "contentText_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "contentText_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "ProjectStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "ProjectStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProjectStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "status_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProjectStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "public", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "public_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "oldID_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "oldID_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "ProjectType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "ProjectType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProjectType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "type_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProjectType", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sequence", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "content", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "ProjectStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "public", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "ProjectType", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCustomersInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneRequiredWithoutTeamInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "TeamMemberStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Team", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutMembersInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "User", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutTeamsInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutMembersInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutTeamsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TeamMemberResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TeamMember", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "TeamMemberStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Team", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneRequiredWithoutMembersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "User", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutTeamsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneRequiredWithoutMembersInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutTeamsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ServiceCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Projects", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutServicesInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Parent", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCreateOneWithoutChildsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCreateManyWithoutParentInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Category", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryCreateOneWithoutServicesInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Resource", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutServiceInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutServicesInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ServiceCreateOneWithoutChildsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ServiceCreateManyWithoutParentInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryCreateOneWithoutServicesInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutServiceInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ServiceResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Service", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ServiceUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Projects", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutServicesInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Parent", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceUpdateOneWithoutChildsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceUpdateManyWithoutParentInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Category", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryUpdateOneWithoutServicesInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Resource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneRequiredWithoutServiceInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutServicesInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ServiceUpdateOneWithoutChildsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ServiceUpdateManyWithoutParentInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryUpdateOneWithoutServicesInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneRequiredWithoutServiceInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PositionCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutPositionsCreatedInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Users", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutPositionsInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutPositionsCreatedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutPositionsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PositionResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Position", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutPositionsCreatedInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Users", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutPositionsInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutPositionsCreatedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutPositionsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RouteCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "exact", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "Parent", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RouteCreateOneWithoutChildsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RouteCreateManyWithoutParentInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RouteCreateOneWithoutChildsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RouteWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RouteCreateManyWithoutParentInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RouteWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RouteResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Route", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RouteUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "exact", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Parent", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RouteUpdateOneWithoutChildsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RouteUpdateManyWithoutParentInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RouteUpdateOneWithoutChildsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RouteWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RouteUpdateManyWithoutParentInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RouteWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RouteWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RouteWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RouteUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RouteScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RouteUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RouteScalarWhereInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RouteUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RouteScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RouteScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RouteScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RouteScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "path_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "path_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "exact", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "exact_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "component_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "component_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RouteUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "exact", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Subscription", - "description": null, - "fields": [ - { - "name": "gallery", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GallerySubscriptionWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "GallerySubscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "player", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PlayerSubscriptionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "username", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "worldId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "mutation_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_some", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "PlayerSubscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "world", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "WorldSubscriptionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "worldId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "mutation_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_some", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "WorldSubscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "MessageSubscriptionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "worldId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "MessageSubscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notice", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeSubscriptionWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "NoticeSubscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "chatMessageReaded", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedSubscriptionWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ChatMessageReadedSubscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "chatRoom", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomSubscriptionWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ChatRoomSubscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "game", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameSubscriptionWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "GameSubscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gameResult", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameResultSubscriptionWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "GameResultSubscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tournament", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TournamentSubscriptionWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "TournamentSubscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tournamentGroup", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TournamentGroupSubscriptionWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "TournamentGroupSubscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tourney", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TourneySubscriptionWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "TourneySubscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ethTransaction", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionSubscriptionWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "EthTransactionSubscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "callRequest", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CallRequestSubscriptionWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CallRequestSubscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "position", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PositionSubscriptionWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "PositionSubscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectMember", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberSubscriptionWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectMemberSubscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "service", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceSubscriptionWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ServiceSubscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "task", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskSubscriptionWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "TaskSubscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "taskReaction", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionSubscriptionWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "TaskReactionSubscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "teamMember", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberSubscriptionWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "TeamMemberSubscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timer", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TimerSubscriptionWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "TimerSubscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "route", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RouteSubscriptionWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "RouteSubscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "codeChallenge", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeSubscriptionWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CodeChallengeSubscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "codeChallengeBlock", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockSubscriptionWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CodeChallengeBlockSubscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "comment", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CommentSubscriptionWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CommentSubscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "technologyLesson", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonSubscriptionWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "TechnologyLessonSubscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "career", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CareerSubscriptionWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CareerSubscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "technologyLessonUser", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserSubscriptionWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "TechnologyLessonUserSubscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userTechnology", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserTechnologySubscriptionWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "UserTechnologySubscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "technology", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TechnologySubscriptionWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "TechnologySubscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamSubscriptionWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "TeamSubscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "project", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectSubscriptionWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectSubscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "template", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TemplateSubscriptionWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "TemplateSubscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "resource", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceSubscriptionWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ResourceSubscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "chatMessage", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageSubscriptionWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ChatMessageSubscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserSubscriptionWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "UserSubscriptionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GallerySubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GallerySubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GallerySubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GallerySubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "node", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GalleryWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "MutationType", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "CREATED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UPDATED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DELETED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GallerySubscriptionPayload", - "description": null, - "fields": [ - { - "name": "mutation", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Gallery", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedFields", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "previousValues", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "GalleryPreviousValues", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GalleryPreviousValues", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PlayerSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PlayerSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PlayerSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PlayerSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "node", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PlayerWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PlayerSubscriptionPayload", - "description": null, - "fields": [ - { - "name": "mutation", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Player", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedFields", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "previousValues", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "PlayerPreviousValues", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PlayerPreviousValues", - "description": null, - "fields": [ - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isAdmin", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gamemode", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "Gamemode", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastLogin", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "x", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "y", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "z", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dirx", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "diry", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "WorldSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WorldSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WorldSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WorldSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "node", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "WorldWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "WorldSubscriptionPayload", - "description": null, - "fields": [ - { - "name": "mutation", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "World", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedFields", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "previousValues", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "WorldPreviousValues", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "WorldPreviousValues", - "description": null, - "fields": [ - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "seed", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WorldType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "time", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timeChanger", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "days", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastPlayed", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "MessageSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MessageSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MessageSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MessageSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "node", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "MessageWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "MessageSubscriptionPayload", - "description": null, - "fields": [ - { - "name": "mutation", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Message", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedFields", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "previousValues", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "MessagePreviousValues", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "MessagePreviousValues", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MessageType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sender", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "body", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NoticeSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NoticeSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NoticeSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NoticeSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "node", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "NoticeSubscriptionPayload", - "description": null, - "fields": [ - { - "name": "mutation", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Notice", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedFields", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "previousValues", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "NoticePreviousValues", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "NoticePreviousValues", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "NoticeType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "node", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ChatMessageReadedSubscriptionPayload", - "description": null, - "fields": [ - { - "name": "mutation", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ChatMessageReaded", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedFields", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "previousValues", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ChatMessageReadedPreviousValues", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ChatMessageReadedPreviousValues", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "node", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ChatRoomSubscriptionPayload", - "description": null, - "fields": [ - { - "name": "mutation", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ChatRoom", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedFields", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "previousValues", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ChatRoomPreviousValues", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ChatRoomPreviousValues", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "image", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isPublic", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "allowAnonymous", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sandbox", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GameSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "node", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GameSubscriptionPayload", - "description": null, - "fields": [ - { - "name": "mutation", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Game", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedFields", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "previousValues", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "GamePreviousValues", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GamePreviousValues", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "start_date", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "end_date", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sequence", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GameResultSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameResultSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameResultSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameResultSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "node", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameResultWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GameResultSubscriptionPayload", - "description": null, - "fields": [ - { - "name": "mutation", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "GameResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedFields", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "previousValues", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "GameResultPreviousValues", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GameResultPreviousValues", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TournamentSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TournamentSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TournamentSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TournamentSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "node", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TournamentWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TournamentSubscriptionPayload", - "description": null, - "fields": [ - { - "name": "mutation", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Tournament", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedFields", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "previousValues", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TournamentPreviousValues", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TournamentPreviousValues", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TournamentGroupSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TournamentGroupSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TournamentGroupSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TournamentGroupSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "node", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TournamentGroupWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TournamentGroupSubscriptionPayload", - "description": null, - "fields": [ - { - "name": "mutation", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TournamentGroup", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedFields", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "previousValues", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TournamentGroupPreviousValues", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TournamentGroupPreviousValues", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TourneySubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneySubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneySubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneySubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "node", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TourneyWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TourneySubscriptionPayload", - "description": null, - "fields": [ - { - "name": "mutation", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Tourney", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedFields", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "previousValues", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TourneyPreviousValues", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TourneyPreviousValues", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date_till", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthTransactionSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "node", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EthTransactionSubscriptionPayload", - "description": null, - "fields": [ - { - "name": "mutation", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "EthTransaction", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CallRequestSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CallRequestSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CallRequestSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CallRequestSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "node", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CallRequestWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CallRequestSubscriptionPayload", - "description": null, - "fields": [ - { - "name": "mutation", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "CallRequest", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedFields", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "previousValues", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "CallRequestPreviousValues", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CallRequestPreviousValues", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "called_descriptions", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "caller_descriptions", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "CallRequestStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "startedAt", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "endedAt", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PositionSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PositionSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PositionSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PositionSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "node", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PositionWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PositionSubscriptionPayload", - "description": null, - "fields": [ - { - "name": "mutation", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Position", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedFields", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "previousValues", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "PositionPreviousValues", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PositionPreviousValues", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "node", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectMemberSubscriptionPayload", - "description": null, - "fields": [ - { - "name": "mutation", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectMember", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedFields", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "previousValues", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectMemberPreviousValues", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectMemberPreviousValues", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "ProjectMemberStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ServiceSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "node", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ServiceSubscriptionPayload", - "description": null, - "fields": [ - { - "name": "mutation", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Service", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedFields", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "previousValues", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ServicePreviousValues", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ServicePreviousValues", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rank", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "oldID", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "node", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TaskSubscriptionPayload", - "description": null, - "fields": [ - { - "name": "mutation", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Task", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedFields", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "previousValues", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TaskPreviousValues", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TaskPreviousValues", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "content", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TaskStatus", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "startDatePlaning", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "endDatePlaning", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "startDate", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "endDate", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskReactionSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "node", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TaskReactionSubscriptionPayload", - "description": null, - "fields": [ - { - "name": "mutation", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TaskReaction", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedFields", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "previousValues", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TaskReactionPreviousValues", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TaskReactionPreviousValues", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "TaskReactionType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamMemberSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null + "kind": "OBJECT", + "name": "UserGroup", + "ofType": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null + "kind": "OBJECT", + "name": "LogedIn", + "ofType": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null + "kind": "OBJECT", + "name": "File", + "ofType": null }, { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } - }, - "defaultValue": null + "kind": "OBJECT", + "name": "Resource", + "ofType": null }, { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "OBJECT", + "name": "Project", + "ofType": null }, { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "kind": "OBJECT", + "name": "Vote", + "ofType": null }, { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "kind": "OBJECT", + "name": "ResourceTag", + "ofType": null }, { - "name": "node", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TeamMemberSubscriptionPayload", - "description": null, - "fields": [ - { - "name": "mutation", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "Tag", + "ofType": null }, { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TeamMember", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "EthContractSource", + "ofType": null }, { - "name": "updatedFields", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "EthAccount", + "ofType": null }, { - "name": "previousValues", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TeamMemberPreviousValues", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TeamMemberPreviousValues", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "EthTransaction", + "ofType": null }, { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "EthBlock", + "ofType": null }, { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "ChatRoom", + "ofType": null }, { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "TeamMemberStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TimerSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TimerSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null + "kind": "OBJECT", + "name": "ChatMessage", + "ofType": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TimerSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null + "kind": "OBJECT", + "name": "ChatMessageReaded", + "ofType": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TimerSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null + "kind": "OBJECT", + "name": "ChatRoomInvitation", + "ofType": null }, { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } - }, - "defaultValue": null + "kind": "OBJECT", + "name": "Notice", + "ofType": null }, { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "OBJECT", + "name": "CallRequest", + "ofType": null }, { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "kind": "OBJECT", + "name": "NotificationType", + "ofType": null }, { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "kind": "OBJECT", + "name": "Topic", + "ofType": null }, { - "name": "node", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TimerWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TimerSubscriptionPayload", - "description": null, - "fields": [ - { - "name": "mutation", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "Comment", + "ofType": null }, - { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Timer", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + { + "kind": "OBJECT", + "name": "UserTarif", + "ofType": null }, { - "name": "updatedFields", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "Tarif", + "ofType": null }, { - "name": "previousValues", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TimerPreviousValues", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TimerPreviousValues", - "description": null, - "fields": [ + "kind": "OBJECT", + "name": "Account", + "ofType": null + }, { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "Transaction", + "ofType": null }, { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "Place", + "ofType": null }, { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "PlaceBeer", + "ofType": null }, { - "name": "stopedAt", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RouteSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "Beer", + "ofType": null + }, { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RouteSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null + "kind": "OBJECT", + "name": "Letter", + "ofType": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RouteSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null + "kind": "OBJECT", + "name": "Route", + "ofType": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RouteSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null + "kind": "OBJECT", + "name": "Game", + "ofType": null }, { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } - }, - "defaultValue": null + "kind": "OBJECT", + "name": "Tourney", + "ofType": null }, { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "OBJECT", + "name": "Tournament", + "ofType": null }, { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "kind": "OBJECT", + "name": "TournamentGroup", + "ofType": null }, { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "kind": "OBJECT", + "name": "Team", + "ofType": null }, { - "name": "node", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RouteWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RouteSubscriptionPayload", - "description": null, - "fields": [ + "kind": "OBJECT", + "name": "GameResult", + "ofType": null + }, { - "name": "mutation", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "City", + "ofType": null }, { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Route", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "TarifRequest", + "ofType": null }, { - "name": "updatedFields", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "ResetPassword", + "ofType": null }, { - "name": "previousValues", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "RoutePreviousValues", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RoutePreviousValues", - "description": null, - "fields": [ + "kind": "OBJECT", + "name": "CommentType", + "ofType": null + }, { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "LetsadsSmsMessageStatus", + "ofType": null }, { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "SmsMessage", + "ofType": null }, { - "name": "path", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "SmsProvider", + "ofType": null }, { - "name": "exact", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "LetsadsSmsMessageStatusItem", + "ofType": null }, { - "name": "component", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "Log", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Photo", + "ofType": null } - ], + ] + }, + { + "kind": "SCALAR", + "name": "DateTime", + "description": "", + "fields": null, "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "CodeChallengeSubscriptionWhereInput", + "name": "UserGroupWhereInput", "description": null, "fields": null, "inputFields": [ @@ -160840,7 +8815,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeSubscriptionWhereInput", + "name": "UserGroupWhereInput", "ofType": null } } @@ -160858,7 +8833,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeSubscriptionWhereInput", + "name": "UserGroupWhereInput", "ofType": null } } @@ -160876,7 +8851,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeSubscriptionWhereInput", + "name": "UserGroupWhereInput", "ofType": null } } @@ -160884,36 +8859,28 @@ "defaultValue": null }, { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", + "name": "id", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", + "name": "id_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", + "name": "id_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -160922,7 +8889,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } } @@ -160930,8 +8897,8 @@ "defaultValue": null }, { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", + "name": "id_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -160940,7 +8907,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } } @@ -160948,453 +8915,128 @@ "defaultValue": null }, { - "name": "node", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CodeChallengeSubscriptionPayload", - "description": null, - "fields": [ - { - "name": "mutation", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "CodeChallenge", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedFields", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "previousValues", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "CodeChallengePreviousValues", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CodeChallengePreviousValues", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "externalKey", - "description": null, - "args": [], + "name": "id_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", "name": "ID", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dashedName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "localeTitle", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "challengeType", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "forumTopicId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "translations", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tests", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "solutions", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "instructions", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "files", - "description": null, - "args": [], + "name": "id_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "ID", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "videoUrl", - "description": null, - "args": [], + "name": "id_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "order", - "description": null, - "args": [], + "name": "id_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "superOrder", - "description": null, - "args": [], + "name": "id_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "challengeOrder", - "description": null, - "args": [], + "name": "id_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "required", - "description": null, - "args": [], + "name": "id_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "ID", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "isRequired", - "description": null, - "args": [], + "name": "id_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "isPrivate", - "description": null, - "args": [], + "name": "id_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "isBeta", - "description": null, - "args": [], + "name": "id_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "template", + "name": "name", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "time", - "description": null, - "args": [], + "name": "name_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rank", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockSubscriptionWhereInput", - "ofType": null - } - } - }, "defaultValue": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", + "name": "name_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -161402,8 +9044,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockSubscriptionWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -161411,8 +9053,8 @@ "defaultValue": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + "name": "name_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -161420,8 +9062,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockSubscriptionWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -161429,26 +9071,18 @@ "defaultValue": null }, { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", + "name": "name_lt", + "description": "All values less than the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", + "name": "name_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -161457,225 +9091,123 @@ "defaultValue": null }, { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", + "name": "name_gt", + "description": "All values greater than the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", + "name": "name_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "node", - "description": null, + "name": "name_contains", + "description": "All values containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CodeChallengeBlockSubscriptionPayload", - "description": null, - "fields": [ - { - "name": "mutation", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "node", - "description": null, - "args": [], + "name": "name_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "OBJECT", - "name": "CodeChallengeBlock", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedFields", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "previousValues", - "description": null, - "args": [], + "name": "name_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "OBJECT", - "name": "CodeChallengeBlockPreviousValues", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CodeChallengeBlockPreviousValues", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "id", - "description": null, - "args": [], + "name": "name_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "externalKey", - "description": null, - "args": [], + "name": "name_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "createdAt", - "description": null, - "args": [], + "name": "name_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedAt", + "name": "Users_every", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "name", + "name": "Users_some", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "rank", + "name": "Users_none", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "CommentSubscriptionWhereInput", + "name": "UserWhereInput", "description": null, "fields": null, "inputFields": [ @@ -161690,7 +9222,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CommentSubscriptionWhereInput", + "name": "UserWhereInput", "ofType": null } } @@ -161708,7 +9240,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CommentSubscriptionWhereInput", + "name": "UserWhereInput", "ofType": null } } @@ -161726,7 +9258,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CommentSubscriptionWhereInput", + "name": "UserWhereInput", "ofType": null } } @@ -161734,36 +9266,28 @@ "defaultValue": null }, { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", + "name": "id", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", + "name": "id_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", + "name": "id_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -161772,7 +9296,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } } @@ -161780,8 +9304,8 @@ "defaultValue": null }, { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", + "name": "id_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -161790,7 +9314,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } } @@ -161798,183 +9322,128 @@ "defaultValue": null }, { - "name": "node", - "description": null, + "name": "id_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "CommentWhereInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CommentSubscriptionPayload", - "description": null, - "fields": [ + }, { - "name": "mutation", - "description": null, - "args": [], + "name": "id_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "node", - "description": null, - "args": [], + "name": "id_gt", + "description": "All values greater than the given value.", "type": { - "kind": "OBJECT", - "name": "Comment", + "kind": "SCALAR", + "name": "ID", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedFields", - "description": null, - "args": [], + "name": "id_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "previousValues", - "description": null, - "args": [], + "name": "id_contains", + "description": "All values containing the given string.", "type": { - "kind": "OBJECT", - "name": "CommentPreviousValues", + "kind": "SCALAR", + "name": "ID", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CommentPreviousValues", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "id", - "description": null, - "args": [], + "name": "id_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "createdAt", - "description": null, - "args": [], + "name": "id_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedAt", - "description": null, - "args": [], + "name": "id_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "components", - "description": null, - "args": [], + "name": "id_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "ID", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "contentText", + "name": "id_not_ends_with", + "description": "All values not ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ + "defaultValue": null + }, { - "name": "AND", - "description": "Logical AND on all given filters.", + "name": "createdAt_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -161982,8 +9451,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonSubscriptionWhereInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null } } @@ -161991,8 +9460,8 @@ "defaultValue": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", + "name": "createdAt_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -162000,8 +9469,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonSubscriptionWhereInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null } } @@ -162009,8 +9478,68 @@ "defaultValue": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + "name": "createdAt_lt", + "description": "All values less than the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_lte", + "description": "All values less than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_gt", + "description": "All values greater than the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_gte", + "description": "All values greater than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -162018,8 +9547,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonSubscriptionWhereInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null } } @@ -162027,8 +9556,8 @@ "defaultValue": null }, { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", + "name": "updatedAt_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -162036,8 +9565,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "MutationType", + "kind": "SCALAR", + "name": "DateTime", "ofType": null } } @@ -162045,8 +9574,48 @@ "defaultValue": null }, { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", + "name": "updatedAt_lt", + "description": "All values less than the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_lte", + "description": "All values less than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_gt", + "description": "All values greater than the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_gte", + "description": "All values greater than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "username", + "description": null, "type": { "kind": "SCALAR", "name": "String", @@ -162055,8 +9624,18 @@ "defaultValue": null }, { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", + "name": "username_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "username_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -162073,8 +9652,8 @@ "defaultValue": null }, { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", + "name": "username_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -162091,181 +9670,128 @@ "defaultValue": null }, { - "name": "node", - "description": null, + "name": "username_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TechnologyLessonSubscriptionPayload", - "description": null, - "fields": [ + }, { - "name": "mutation", - "description": null, - "args": [], + "name": "username_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "node", - "description": null, - "args": [], + "name": "username_gt", + "description": "All values greater than the given value.", "type": { - "kind": "OBJECT", - "name": "TechnologyLesson", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedFields", - "description": null, - "args": [], + "name": "username_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "previousValues", - "description": null, - "args": [], + "name": "username_contains", + "description": "All values containing the given string.", "type": { - "kind": "OBJECT", - "name": "TechnologyLessonPreviousValues", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TechnologyLessonPreviousValues", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "id", - "description": null, - "args": [], + "name": "username_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "name", - "description": null, - "args": [], + "name": "username_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "components", - "description": null, - "args": [], + "name": "username_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "contentText", + "name": "username_ends_with", + "description": "All values ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "username_not_ends_with", + "description": "All values not ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "email", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CareerSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ + "defaultValue": null + }, { - "name": "AND", - "description": "Logical AND on all given filters.", + "name": "email_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CareerSubscriptionWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", + "name": "email_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -162273,8 +9799,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CareerSubscriptionWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -162282,8 +9808,8 @@ "defaultValue": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + "name": "email_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -162291,8 +9817,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CareerSubscriptionWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -162300,26 +9826,18 @@ "defaultValue": null }, { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", + "name": "email_lt", + "description": "All values less than the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", + "name": "email_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -162328,8 +9846,108 @@ "defaultValue": null }, { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", + "name": "email_gt", + "description": "All values greater than the given value.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "email_gte", + "description": "All values greater than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "email_contains", + "description": "All values containing the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "email_not_contains", + "description": "All values not containing the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "email_starts_with", + "description": "All values starting with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "email_not_starts_with", + "description": "All values not starting with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "email_ends_with", + "description": "All values ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "email_not_ends_with", + "description": "All values not ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "phone", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "phone_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "phone_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -162346,8 +9964,8 @@ "defaultValue": null }, { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", + "name": "phone_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -162364,267 +9982,158 @@ "defaultValue": null }, { - "name": "node", - "description": null, + "name": "phone_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "CareerWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CareerSubscriptionPayload", - "description": null, - "fields": [ + }, { - "name": "mutation", - "description": null, - "args": [], + "name": "phone_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "node", - "description": null, - "args": [], + "name": "phone_gt", + "description": "All values greater than the given value.", "type": { - "kind": "OBJECT", - "name": "Career", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedFields", - "description": null, - "args": [], + "name": "phone_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "previousValues", - "description": null, - "args": [], + "name": "phone_contains", + "description": "All values containing the given string.", "type": { - "kind": "OBJECT", - "name": "CareerPreviousValues", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CareerPreviousValues", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "id", - "description": null, - "args": [], + "name": "phone_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "createdAt", - "description": null, - "args": [], + "name": "phone_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedAt", - "description": null, - "args": [], + "name": "phone_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "name", - "description": null, - "args": [], + "name": "phone_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "description", - "description": null, - "args": [], + "name": "phone_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "start_date", + "name": "showEmail", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Boolean", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ + "defaultValue": null + }, { - "name": "AND", - "description": "Logical AND on all given filters.", + "name": "showEmail_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserSubscriptionWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", + "name": "showPhone", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserSubscriptionWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + "name": "showPhone_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserSubscriptionWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null }, { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", + "name": "password", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", + "name": "password_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", "name": "String", @@ -162633,8 +10142,8 @@ "defaultValue": null }, { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", + "name": "password_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -162651,8 +10160,8 @@ "defaultValue": null }, { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", + "name": "password_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -162669,255 +10178,118 @@ "defaultValue": null }, { - "name": "node", - "description": null, + "name": "password_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TechnologyLessonUserSubscriptionPayload", - "description": null, - "fields": [ - { - "name": "mutation", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "node", - "description": null, - "args": [], + "name": "password_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "OBJECT", - "name": "TechnologyLessonUser", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedFields", - "description": null, - "args": [], + "name": "password_gt", + "description": "All values greater than the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "previousValues", - "description": null, - "args": [], + "name": "password_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "OBJECT", - "name": "TechnologyLessonUserPreviousValues", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TechnologyLessonUserPreviousValues", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "createdAt", - "description": null, - "args": [], + "name": "password_contains", + "description": "All values containing the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedAt", - "description": null, - "args": [], + "name": "password_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "status", - "description": null, - "args": [], + "name": "password_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "ENUM", - "name": "TechnologyLessonUserStatus", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "completedAt", - "description": null, - "args": [], + "name": "password_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserTechnologySubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserTechnologySubscriptionWhereInput", - "ofType": null - } - } - }, "defaultValue": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", + "name": "password_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserTechnologySubscriptionWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + "name": "password_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserTechnologySubscriptionWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", + "name": "fullname", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", + "name": "fullname_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", "name": "String", @@ -162926,8 +10298,8 @@ "defaultValue": null }, { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", + "name": "fullname_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -162944,8 +10316,8 @@ "defaultValue": null }, { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", + "name": "fullname_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -162962,279 +10334,118 @@ "defaultValue": null }, { - "name": "node", - "description": null, + "name": "fullname_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UserTechnologySubscriptionPayload", - "description": null, - "fields": [ - { - "name": "mutation", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "node", - "description": null, - "args": [], + "name": "fullname_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "OBJECT", - "name": "UserTechnology", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedFields", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "previousValues", - "description": null, - "args": [], + "name": "fullname_gt", + "description": "All values greater than the given value.", "type": { - "kind": "OBJECT", - "name": "UserTechnologyPreviousValues", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UserTechnologyPreviousValues", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedAt", - "description": null, - "args": [], + "name": "fullname_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "components", - "description": null, - "args": [], + "name": "fullname_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "date_from", - "description": null, - "args": [], + "name": "fullname_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "date_till", - "description": null, - "args": [], + "name": "fullname_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "status", - "description": null, - "args": [], + "name": "fullname_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "ENUM", - "name": "UserTechnologyStatus", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologySubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologySubscriptionWhereInput", - "ofType": null - } - } - }, "defaultValue": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", + "name": "fullname_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologySubscriptionWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + "name": "fullname_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologySubscriptionWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", + "name": "image", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", + "name": "image_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", "name": "String", @@ -163243,8 +10454,8 @@ "defaultValue": null }, { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", + "name": "image_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -163261,8 +10472,8 @@ "defaultValue": null }, { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", + "name": "image_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -163279,279 +10490,118 @@ "defaultValue": null }, { - "name": "node", - "description": null, + "name": "image_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "TechnologyWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TechnologySubscriptionPayload", - "description": null, - "fields": [ - { - "name": "mutation", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "node", - "description": null, - "args": [], + "name": "image_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "OBJECT", - "name": "Technology", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedFields", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "previousValues", - "description": null, - "args": [], + "name": "image_gt", + "description": "All values greater than the given value.", "type": { - "kind": "OBJECT", - "name": "TechnologyPreviousValues", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TechnologyPreviousValues", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedAt", - "description": null, - "args": [], + "name": "image_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "name", - "description": null, - "args": [], + "name": "image_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "components", - "description": null, - "args": [], + "name": "image_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "contentText", - "description": null, - "args": [], + "name": "image_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "site_url", - "description": null, - "args": [], + "name": "image_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamSubscriptionWhereInput", - "ofType": null - } - } - }, "defaultValue": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", + "name": "image_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamSubscriptionWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + "name": "image_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamSubscriptionWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", + "name": "address", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", + "name": "address_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", "name": "String", @@ -163560,8 +10610,8 @@ "defaultValue": null }, { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", + "name": "address_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -163578,8 +10628,8 @@ "defaultValue": null }, { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", + "name": "address_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -163596,333 +10646,208 @@ "defaultValue": null }, { - "name": "node", - "description": null, + "name": "address_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TeamSubscriptionPayload", - "description": null, - "fields": [ + }, { - "name": "mutation", - "description": null, - "args": [], + "name": "address_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "node", - "description": null, - "args": [], + "name": "address_gt", + "description": "All values greater than the given value.", "type": { - "kind": "OBJECT", - "name": "Team", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedFields", - "description": null, - "args": [], + "name": "address_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "previousValues", - "description": null, - "args": [], + "name": "address_contains", + "description": "All values containing the given string.", "type": { - "kind": "OBJECT", - "name": "TeamPreviousValues", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TeamPreviousValues", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "id", - "description": null, - "args": [], + "name": "address_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "createdAt", - "description": null, - "args": [], + "name": "address_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedAt", - "description": null, - "args": [], + "name": "address_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "name", - "description": null, - "args": [], + "name": "address_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "status", - "description": null, - "args": [], + "name": "address_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TeamStatus", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "oldID", + "name": "active", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "address", - "description": null, - "args": [], + "name": "active_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "website", + "name": "activated", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "email", - "description": null, - "args": [], + "name": "activated_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "phone", + "name": "deleted", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ + "defaultValue": null + }, { - "name": "AND", - "description": "Logical AND on all given filters.", + "name": "deleted_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectSubscriptionWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", + "name": "hidden", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectSubscriptionWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + "name": "hidden_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectSubscriptionWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null }, { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", + "name": "user_id", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", + "name": "user_id_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", + "name": "user_id_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -163931,7 +10856,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } } @@ -163939,8 +10864,8 @@ "defaultValue": null }, { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", + "name": "user_id_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -163949,7 +10874,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } } @@ -163957,367 +10882,214 @@ "defaultValue": null }, { - "name": "node", - "description": null, + "name": "user_id_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectSubscriptionPayload", - "description": null, - "fields": [ - { - "name": "mutation", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "node", - "description": null, - "args": [], + "name": "user_id_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "OBJECT", - "name": "Project", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedFields", - "description": null, - "args": [], + "name": "user_id_gt", + "description": "All values greater than the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "previousValues", - "description": null, - "args": [], + "name": "user_id_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "OBJECT", - "name": "ProjectPreviousValues", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectPreviousValues", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "name", + "name": "first_name", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "domain", - "description": null, - "args": [], + "name": "first_name_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "createdAt", - "description": null, - "args": [], + "name": "first_name_in", + "description": "All values that are contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedAt", - "description": null, - "args": [], + "name": "first_name_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "description", - "description": null, - "args": [], + "name": "first_name_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "url", - "description": null, - "args": [], + "name": "first_name_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "sequence", - "description": null, - "args": [], + "name": "first_name_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "content", - "description": null, - "args": [], + "name": "first_name_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "contentText", - "description": null, - "args": [], + "name": "first_name_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "ProjectStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "public", - "description": null, - "args": [], + "name": "first_name_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "oldID", - "description": null, - "args": [], + "name": "first_name_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "type", - "description": null, - "args": [], + "name": "first_name_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "ENUM", - "name": "ProjectType", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TemplateSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TemplateSubscriptionWhereInput", - "ofType": null - } - } - }, "defaultValue": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", + "name": "first_name_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TemplateSubscriptionWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + "name": "first_name_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TemplateSubscriptionWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", + "name": "middle_name", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", + "name": "middle_name_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", "name": "String", @@ -164326,8 +11098,8 @@ "defaultValue": null }, { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", + "name": "middle_name_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -164344,8 +11116,8 @@ "defaultValue": null }, { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", + "name": "middle_name_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -164362,255 +11134,128 @@ "defaultValue": null }, { - "name": "node", - "description": null, + "name": "middle_name_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "TemplateWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TemplateSubscriptionPayload", - "description": null, - "fields": [ - { - "name": "mutation", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "node", - "description": null, - "args": [], + "name": "middle_name_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "OBJECT", - "name": "Template", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedFields", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "previousValues", - "description": null, - "args": [], + "name": "middle_name_gt", + "description": "All values greater than the given value.", "type": { - "kind": "OBJECT", - "name": "TemplatePreviousValues", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TemplatePreviousValues", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedAt", - "description": null, - "args": [], + "name": "middle_name_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "externalKey", - "description": null, - "args": [], + "name": "middle_name_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "name", - "description": null, - "args": [], + "name": "middle_name_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "description", - "description": null, - "args": [], + "name": "middle_name_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "component", - "description": null, - "args": [], + "name": "middle_name_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "props", - "description": null, - "args": [], + "name": "middle_name_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "components", - "description": null, - "args": [], + "name": "middle_name_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "vars", + "name": "last_name", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "rank", - "description": null, - "args": [], + "name": "last_name_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ + "defaultValue": null + }, { - "name": "AND", - "description": "Logical AND on all given filters.", + "name": "last_name_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -164618,8 +11263,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceSubscriptionWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -164627,8 +11272,8 @@ "defaultValue": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", + "name": "last_name_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -164636,8 +11281,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceSubscriptionWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -164645,44 +11290,28 @@ "defaultValue": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + "name": "last_name_lt", + "description": "All values less than the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceSubscriptionWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", + "name": "last_name_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", + "name": "last_name_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -164691,479 +11320,386 @@ "defaultValue": null }, { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", + "name": "last_name_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", + "name": "last_name_contains", + "description": "All values containing the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "node", - "description": null, + "name": "last_name_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ResourceSubscriptionPayload", - "description": null, - "fields": [ + }, { - "name": "mutation", - "description": null, - "args": [], + "name": "last_name_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "node", - "description": null, - "args": [], + "name": "last_name_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "OBJECT", - "name": "Resource", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedFields", - "description": null, - "args": [], + "name": "last_name_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "previousValues", - "description": null, - "args": [], + "name": "last_name_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "OBJECT", - "name": "ResourcePreviousValues", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ResourcePreviousValues", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "id", + "name": "gender", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "code", - "description": null, - "args": [], + "name": "gender_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "createdAt", - "description": null, - "args": [], + "name": "gender_in", + "description": "All values that are contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedAt", - "description": null, - "args": [], + "name": "gender_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "type", - "description": null, - "args": [], + "name": "gender_lt", + "description": "All values less than the given value.", "type": { - "kind": "ENUM", - "name": "ResourceType", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "name", - "description": null, - "args": [], + "name": "gender_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "longtitle", - "description": null, - "args": [], + "name": "gender_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "content", - "description": null, - "args": [], + "name": "gender_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "Int", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "contentText", + "name": "birth_date", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "published", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "deleted", - "description": null, - "args": [], + "name": "birth_date_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "hidemenu", - "description": null, - "args": [], + "name": "birth_date_in", + "description": "All values that are contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "searchable", - "description": null, - "args": [], + "name": "birth_date_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "uri", - "description": null, - "args": [], + "name": "birth_date_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "isfolder", - "description": null, - "args": [], + "name": "birth_date_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "rating", - "description": null, - "args": [], + "name": "birth_date_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "DateTime", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "positiveVotesCount", - "description": null, - "args": [], + "name": "birth_date_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "negativeVotesCount", + "name": "country_id", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "Int", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "neutralVotesCount", - "description": null, - "args": [], + "name": "country_id_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", "name": "Int", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "oldID", - "description": null, - "args": [], + "name": "country_id_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "country_id_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "country_id_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", "name": "Int", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "mockUpdate", - "description": null, - "args": [], + "name": "country_id_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "components", - "description": null, - "args": [], + "name": "country_id_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "Int", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "commentOldID", - "description": null, - "args": [], + "name": "country_id_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", "name": "Int", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "class_key", + "name": "region_id", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "template", - "description": null, - "args": [], + "name": "region_id_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", "name": "Int", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ + "defaultValue": null + }, { - "name": "AND", - "description": "Logical AND on all given filters.", + "name": "region_id_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -165171,8 +11707,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageSubscriptionWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } } @@ -165180,8 +11716,8 @@ "defaultValue": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", + "name": "region_id_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -165189,8 +11725,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageSubscriptionWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } } @@ -165198,139 +11734,86 @@ "defaultValue": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + "name": "region_id_lt", + "description": "All values less than the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageSubscriptionWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", + "name": "region_id_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", + "name": "region_id_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", + "name": "region_id_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", + "name": "city_id", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "node", - "description": null, + "name": "city_id_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ChatMessageSubscriptionPayload", - "description": null, - "fields": [ + }, { - "name": "mutation", - "description": null, - "args": [], + "name": "city_id_in", + "description": "All values that are contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ChatMessage", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedFields", - "description": null, - "args": [], + "name": "city_id_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -165339,124 +11822,76 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "previousValues", - "description": null, - "args": [], + "name": "city_id_lt", + "description": "All values less than the given value.", "type": { - "kind": "OBJECT", - "name": "ChatMessagePreviousValues", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ChatMessagePreviousValues", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "id", - "description": null, - "args": [], + "name": "city_id_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "createdAt", - "description": null, - "args": [], + "name": "city_id_gt", + "description": "All values greater than the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedAt", - "description": null, - "args": [], + "name": "city_id_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "content", + "name": "status", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "contentText", - "description": null, - "args": [], + "name": "status_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ + "defaultValue": null + }, { - "name": "AND", - "description": "Logical AND on all given filters.", + "name": "status_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -165464,8 +11899,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserSubscriptionWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -165473,8 +11908,8 @@ "defaultValue": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", + "name": "status_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -165482,8 +11917,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserSubscriptionWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -165491,44 +11926,28 @@ "defaultValue": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + "name": "status_lt", + "description": "All values less than the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserSubscriptionWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", + "name": "status_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", + "name": "status_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -165537,649 +11956,464 @@ "defaultValue": null }, { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", + "name": "status_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", + "name": "status_contains", + "description": "All values containing the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "node", - "description": null, + "name": "status_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UserSubscriptionPayload", - "description": null, - "fields": [ + }, { - "name": "mutation", - "description": null, - "args": [], + "name": "status_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "node", - "description": null, - "args": [], + "name": "status_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "OBJECT", - "name": "User", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedFields", - "description": null, - "args": [], + "name": "status_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "previousValues", - "description": null, - "args": [], + "name": "status_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "OBJECT", - "name": "UserPreviousValues", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UserPreviousValues", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "id", + "name": "timezone", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "createdAt", - "description": null, - "args": [], + "name": "timezone_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timezone_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedAt", - "description": null, - "args": [], + "name": "timezone_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "username", - "description": null, - "args": [], + "name": "timezone_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "email", - "description": null, - "args": [], + "name": "timezone_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "phone", - "description": null, - "args": [], + "name": "timezone_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "showEmail", - "description": null, - "args": [], + "name": "timezone_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "showPhone", - "description": null, - "args": [], + "name": "timezone_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "password", - "description": null, - "args": [], + "name": "timezone_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "fullname", - "description": null, - "args": [], + "name": "timezone_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "image", - "description": null, - "args": [], + "name": "timezone_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "address", - "description": null, - "args": [], + "name": "timezone_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "active", - "description": null, - "args": [], + "name": "timezone_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "activated", + "name": "language_id", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "deleted", - "description": null, - "args": [], + "name": "language_id_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "hidden", - "description": null, - "args": [], + "name": "language_id_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "sudo", - "description": null, - "args": [], + "name": "language_id_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "language_id_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "marketplaceToken", - "description": null, - "args": [], + "name": "language_id_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", - "description": null, - "args": [], + "name": "language_id_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", - "description": null, - "args": [], + "name": "language_id_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "num_blog_posts", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "oldID", - "description": null, - "args": [], + "name": "num_blog_posts_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", "name": "Int", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ImportResponse", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "success", - "description": null, - "args": [], + "name": "num_blog_posts_in", + "description": "All values that are contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "errors", - "description": null, - "args": [], + "name": "num_blog_posts_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "data", - "description": null, - "args": [], + "name": "num_blog_posts_lt", + "description": "All values less than the given value.", "type": { - "kind": "OBJECT", - "name": "Import", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Import", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "id", - "description": null, - "args": [], + "name": "num_blog_posts_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "createdAt", - "description": null, - "args": [], + "name": "num_blog_posts_gt", + "description": "All values greater than the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedAt", - "description": null, - "args": [], + "name": "num_blog_posts_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "name", + "name": "last", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "status", - "description": null, - "args": [], + "name": "last_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ImportStatus", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "Logs", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LogWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "LogOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": null, - "type": { + "name": "last_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "Int", "ofType": null - }, - "defaultValue": null + } } - ], + }, + "defaultValue": null + }, + { + "name": "last_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -166187,275 +12421,248 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Log", + "kind": "SCALAR", + "name": "Int", "ofType": null } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "CreatedBy", - "description": null, - "args": [], + "name": "last_lt", + "description": "All values less than the given value.", "type": { - "kind": "OBJECT", - "name": "User", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "LogOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null + "name": "last_lte", + "description": "All values less than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null + "name": "last_gt", + "description": "All values greater than the given value.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null + "name": "last_gte", + "description": "All values greater than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "name": "updatedAt_DESC", + "name": "created_at", "description": null, - "isDeprecated": false, - "deprecationReason": null + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null }, { - "name": "level_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null + "name": "created_at_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null }, { - "name": "level_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null + "name": "created_at_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + }, + "defaultValue": null }, { - "name": "objectType_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null + "name": "created_at_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + }, + "defaultValue": null }, { - "name": "objectType_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null + "name": "created_at_lt", + "description": "All values less than the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null }, { - "name": "message_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null + "name": "created_at_lte", + "description": "All values less than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null }, { - "name": "message_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null + "name": "created_at_gt", + "description": "All values greater than the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null }, { - "name": "stack_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null + "name": "created_at_gte", + "description": "All values greater than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null }, { - "name": "stack_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Log", - "description": null, - "fields": [ - { - "name": "id", + "name": "notification", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "createdAt", - "description": null, - "args": [], + "name": "notification_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedAt", - "description": null, - "args": [], + "name": "notification_in", + "description": "All values that are contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "level", - "description": null, - "args": [], + "name": "notification_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "LogLevel", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "objectType", - "description": null, - "args": [], + "name": "notification_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "message", - "description": null, - "args": [], + "name": "notification_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "stack", - "description": null, - "args": [], + "name": "notification_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "Import", - "description": null, - "args": [], + "name": "notification_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "OBJECT", - "name": "Import", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ImportDbConfig", - "description": null, - "fields": null, - "inputFields": [ + "defaultValue": null + }, { - "name": "host", + "name": "icq", "description": null, "type": { "kind": "SCALAR", @@ -166465,8 +12672,8 @@ "defaultValue": null }, { - "name": "user", - "description": null, + "name": "icq_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", "name": "String", @@ -166475,22 +12682,44 @@ "defaultValue": null }, { - "name": "database", - "description": null, + "name": "icq_in", + "description": "All values that are contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null }, { - "name": "password", - "description": null, + "name": "icq_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "icq_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -166499,1081 +12728,586 @@ "defaultValue": null }, { - "name": "tablePrefix", - "description": null, + "name": "icq_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateBlock", - "description": null, - "fields": [ + }, { - "name": "count", - "description": null, - "args": [], + "name": "icq_gt", + "description": "All values greater than the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateChatMessageReaded", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "count", - "description": null, - "args": [], + "name": "icq_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateChatRoomInvitation", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "count", - "description": null, - "args": [], + "name": "icq_contains", + "description": "All values containing the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateFile", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "count", - "description": null, - "args": [], + "name": "icq_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateImport", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "count", - "description": null, - "args": [], + "name": "icq_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateInventory", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "count", - "description": null, - "args": [], + "name": "icq_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateLetsadsSmsMessageStatus", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "count", - "description": null, - "args": [], + "name": "icq_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateLetsadsSmsMessageStatusItem", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "count", - "description": null, - "args": [], + "name": "icq_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateLetter", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "count", + "name": "www", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateLog", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "count", - "description": null, - "args": [], + "name": "www_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateLogedIn", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "count", - "description": null, - "args": [], + "name": "www_in", + "description": "All values that are contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateMessage", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "count", - "description": null, - "args": [], + "name": "www_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregatePlayer", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "count", - "description": null, - "args": [], + "name": "www_lt", + "description": "All values less than the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateProjectTask", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "count", - "description": null, - "args": [], + "name": "www_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateResetPassword", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "count", - "description": null, - "args": [], + "name": "www_gt", + "description": "All values greater than the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateServiceCategory", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "count", - "description": null, - "args": [], + "name": "www_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateSettings", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "count", - "description": null, - "args": [], + "name": "www_contains", + "description": "All values containing the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateSmsMessage", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "count", - "description": null, - "args": [], + "name": "www_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateSmsProvider", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "count", - "description": null, - "args": [], + "name": "www_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateTaskMember", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "count", - "description": null, - "args": [], + "name": "www_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateTourneyPlayer", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "count", - "description": null, - "args": [], + "name": "www_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AggregateUserGroup", - "description": null, - "fields": [ + "defaultValue": null + }, + { + "name": "www_not_ends_with", + "description": "All values not ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, { - "name": "count", + "name": "contact_email", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "BlockConnection", - "description": "A connection to a list of items.", - "fields": [ + "defaultValue": null + }, { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], + "name": "contact_email_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "edges", - "description": "A list of edges.", - "args": [], + "name": "contact_email_in", + "description": "All values that are contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "BlockEdge", + "kind": "SCALAR", + "name": "String", "ofType": null } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "aggregate", - "description": null, - "args": [], + "name": "contact_email_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "AggregateBlock", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "BlockEdge", - "description": "An edge in a connection.", - "fields": [ + "defaultValue": null + }, { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], + "name": "contact_email_lt", + "description": "All values less than the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], + "name": "contact_email_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "BlockCreateInput", - "description": null, - "fields": null, - "inputFields": [ + "defaultValue": null + }, { - "name": "id", - "description": null, + "name": "contact_email_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "representation", - "description": null, + "name": "contact_email_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "type", - "description": null, + "name": "contact_email_contains", + "description": "All values containing the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "x", - "description": null, + "name": "contact_email_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "y", - "description": null, + "name": "contact_email_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "z", - "description": null, + "name": "contact_email_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "world", - "description": null, + "name": "contact_email_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WorldCreateOneWithoutChangedBlocksInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "WorldCreateOneWithoutChangedBlocksInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "contact_email_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "WorldWhereUniqueInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "BlockCreateWithoutWorldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "mobile_phone", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "representation", - "description": null, + "name": "mobile_phone_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "type", - "description": null, + "name": "mobile_phone_in", + "description": "All values that are contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null }, { - "name": "x", - "description": null, + "name": "mobile_phone_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null }, { - "name": "y", - "description": null, + "name": "mobile_phone_lt", + "description": "All values less than the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "z", - "description": null, + "name": "mobile_phone_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "BlockPreviousValues", - "description": null, - "fields": [ + }, { - "name": "id", - "description": null, - "args": [], + "name": "mobile_phone_gt", + "description": "All values greater than the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "representation", - "description": null, - "args": [], + "name": "mobile_phone_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "type", - "description": null, - "args": [], + "name": "mobile_phone_contains", + "description": "All values containing the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "x", - "description": null, - "args": [], + "name": "mobile_phone_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "y", - "description": null, - "args": [], + "name": "mobile_phone_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "z", - "description": null, - "args": [], + "name": "mobile_phone_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "BlockSubscriptionPayload", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "mutation", - "description": null, - "args": [], + "name": "mobile_phone_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "node", - "description": null, - "args": [], + "name": "mobile_phone_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "OBJECT", - "name": "Block", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedFields", + "name": "home_phone", "description": null, - "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "home_phone_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "home_phone_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -167587,36 +13321,149 @@ } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "previousValues", + "name": "home_phone_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "home_phone_lt", + "description": "All values less than the given value.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "home_phone_lte", + "description": "All values less than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "home_phone_gt", + "description": "All values greater than the given value.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "home_phone_gte", + "description": "All values greater than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "home_phone_contains", + "description": "All values containing the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "home_phone_not_contains", + "description": "All values not containing the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "home_phone_starts_with", + "description": "All values starting with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "home_phone_not_starts_with", + "description": "All values not starting with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "home_phone_ends_with", + "description": "All values ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "home_phone_not_ends_with", + "description": "All values not ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "about", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "BlockPreviousValues", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "BlockSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ + "defaultValue": null + }, { - "name": "AND", - "description": "Logical AND on all given filters.", + "name": "about_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "about_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -167624,8 +13471,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "BlockSubscriptionWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -167633,8 +13480,8 @@ "defaultValue": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", + "name": "about_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -167642,8 +13489,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "BlockSubscriptionWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -167651,8 +13498,128 @@ "defaultValue": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + "name": "about_lt", + "description": "All values less than the given value.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "about_lte", + "description": "All values less than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "about_gt", + "description": "All values greater than the given value.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "about_gte", + "description": "All values greater than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "about_contains", + "description": "All values containing the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "about_not_contains", + "description": "All values not containing the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "about_starts_with", + "description": "All values starting with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "about_not_starts_with", + "description": "All values not starting with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "about_ends_with", + "description": "All values ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "about_not_ends_with", + "description": "All values not ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "experience", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "experience_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "experience_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -167660,8 +13627,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "BlockSubscriptionWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -167669,8 +13636,8 @@ "defaultValue": null }, { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", + "name": "experience_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -167678,8 +13645,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "MutationType", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -167687,8 +13654,8 @@ "defaultValue": null }, { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", + "name": "experience_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -167697,8 +13664,118 @@ "defaultValue": null }, { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", + "name": "experience_lte", + "description": "All values less than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "experience_gt", + "description": "All values greater than the given value.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "experience_gte", + "description": "All values greater than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "experience_contains", + "description": "All values containing the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "experience_not_contains", + "description": "All values not containing the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "experience_starts_with", + "description": "All values starting with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "experience_not_starts_with", + "description": "All values not starting with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "experience_ends_with", + "description": "All values ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "experience_not_ends_with", + "description": "All values not ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "job_title", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "job_title_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "job_title_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -167715,8 +13792,8 @@ "defaultValue": null }, { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", + "name": "job_title_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -167733,29 +13810,18 @@ "defaultValue": null }, { - "name": "node", - "description": null, + "name": "job_title_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "BlockWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "BlockUpdateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "representation", - "description": null, + "name": "job_title_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -167764,90 +13830,68 @@ "defaultValue": null }, { - "name": "type", - "description": null, + "name": "job_title_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "x", - "description": null, + "name": "job_title_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "y", - "description": null, + "name": "job_title_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "z", - "description": null, + "name": "job_title_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "world", - "description": null, + "name": "job_title_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateOneRequiredWithoutChangedBlocksInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateOneRequiredWithoutChangedBlocksInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "job_title_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "WorldWhereUniqueInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "BlockUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "representation", - "description": null, + "name": "job_title_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -167856,59 +13900,114 @@ "defaultValue": null }, { - "name": "type", - "description": null, + "name": "job_title_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "x", + "name": "work_place", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "y", - "description": null, + "name": "work_place_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "z", - "description": null, + "name": "work_place_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "work_place_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "work_place_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "BlockUpdateWithoutWorldDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, + { + "name": "work_place_lte", + "description": "All values less than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "work_place_gt", + "description": "All values greater than the given value.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "work_place_gte", + "description": "All values greater than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, { - "name": "representation", - "description": null, + "name": "work_place_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -167917,123 +14016,96 @@ "defaultValue": null }, { - "name": "type", - "description": null, + "name": "work_place_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "x", - "description": null, + "name": "work_place_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "y", - "description": null, + "name": "work_place_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "z", - "description": null, + "name": "work_place_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "BlockUpdateWithWhereUniqueWithoutWorldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", - "description": null, + "name": "work_place_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "BlockWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "data", + "name": "ip", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "BlockUpdateWithoutWorldDataInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "BlockUpsertWithWhereUniqueWithoutWorldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", - "description": null, + "name": "ip_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ip_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "BlockWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CallRequestCreateManyWithoutRoomInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "ip_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -168041,204 +14113,136 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CallRequestWhereUniqueInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CallRequestCreateWithoutRoomInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "ip_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "called_descriptions", - "description": null, + "name": "ip_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "caller_descriptions", - "description": null, + "name": "ip_gt", + "description": "All values greater than the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "status", - "description": null, + "name": "ip_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "ENUM", - "name": "CallRequestStatus", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "startedAt", - "description": null, + "name": "ip_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "endedAt", - "description": null, + "name": "ip_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Called", - "description": null, + "name": "ip_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "Caller", - "description": null, + "name": "ip_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CallRequestScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CallRequestScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", + "name": "ip_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CallRequestScalarWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + "name": "ip_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CallRequestScalarWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "id", + "name": "confirmation_code", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_not", + "name": "confirmation_code_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_in", + "name": "confirmation_code_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -168248,7 +14252,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } } @@ -168256,7 +14260,7 @@ "defaultValue": null }, { - "name": "id_not_in", + "name": "confirmation_code_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -168266,7 +14270,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } } @@ -168274,127 +14278,127 @@ "defaultValue": null }, { - "name": "id_lt", + "name": "confirmation_code_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_lte", + "name": "confirmation_code_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_gt", + "name": "confirmation_code_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_gte", + "name": "confirmation_code_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_contains", + "name": "confirmation_code_contains", "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_not_contains", + "name": "confirmation_code_not_contains", "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_starts_with", + "name": "confirmation_code_starts_with", "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_not_starts_with", + "name": "confirmation_code_not_starts_with", "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_ends_with", + "name": "confirmation_code_ends_with", "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_not_ends_with", + "name": "confirmation_code_not_ends_with", "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "createdAt", + "name": "rating", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_not", + "name": "rating_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_in", + "name": "rating_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -168404,7 +14408,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null } } @@ -168412,7 +14416,7 @@ "defaultValue": null }, { - "name": "createdAt_not_in", + "name": "rating_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -168422,7 +14426,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null } } @@ -168430,67 +14434,67 @@ "defaultValue": null }, { - "name": "createdAt_lt", + "name": "rating_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_lte", + "name": "rating_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_gt", + "name": "rating_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_gte", + "name": "rating_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt", + "name": "etherwallet", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_not", + "name": "etherwallet_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_in", + "name": "etherwallet_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -168500,7 +14504,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null } } @@ -168508,7 +14512,7 @@ "defaultValue": null }, { - "name": "updatedAt_not_in", + "name": "etherwallet_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -168518,7 +14522,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null } } @@ -168526,123 +14530,127 @@ "defaultValue": null }, { - "name": "updatedAt_lt", + "name": "etherwallet_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_lte", + "name": "etherwallet_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_gt", + "name": "etherwallet_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_gte", + "name": "etherwallet_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "status", - "description": null, + "name": "etherwallet_contains", + "description": "All values containing the given string.", "type": { - "kind": "ENUM", - "name": "CallRequestStatus", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "status_not", - "description": "All values that are not equal to given value.", + "name": "etherwallet_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "ENUM", - "name": "CallRequestStatus", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "status_in", - "description": "All values that are contained in given list.", + "name": "etherwallet_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CallRequestStatus", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "status_not_in", - "description": "All values that are not contained in given list.", + "name": "etherwallet_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CallRequestStatus", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "startedAt", + "name": "etherwallet_ends_with", + "description": "All values ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "etherwallet_not_ends_with", + "description": "All values not ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "photo", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "startedAt_not", + "name": "photo_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "startedAt_in", + "name": "photo_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -168652,7 +14660,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null } } @@ -168660,7 +14668,7 @@ "defaultValue": null }, { - "name": "startedAt_not_in", + "name": "photo_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -168670,7 +14678,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null } } @@ -168678,1289 +14686,822 @@ "defaultValue": null }, { - "name": "startedAt_lt", + "name": "photo_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "startedAt_lte", + "name": "photo_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "startedAt_gt", + "name": "photo_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "startedAt_gte", + "name": "photo_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "endedAt", - "description": null, + "name": "photo_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "endedAt_not", - "description": "All values that are not equal to given value.", + "name": "photo_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "endedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "endedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "endedAt_lt", - "description": "All values less than the given value.", + "name": "photo_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "endedAt_lte", - "description": "All values less than or equal the given value.", + "name": "photo_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "endedAt_gt", - "description": "All values greater than the given value.", + "name": "photo_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "endedAt_gte", - "description": "All values greater than or equal the given value.", + "name": "photo_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CallRequestUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "called_descriptions", + "name": "sudo", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "caller_descriptions", - "description": null, + "name": "sudo_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "status", + "name": "Groups_every", "description": null, "type": { - "kind": "ENUM", - "name": "CallRequestStatus", + "kind": "INPUT_OBJECT", + "name": "UserGroupWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "startedAt", + "name": "Groups_some", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "UserGroupWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "endedAt", + "name": "Groups_none", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "UserGroupWhereInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CallRequestUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "called_descriptions", + "name": "CreatedUsers_every", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "caller_descriptions", + "name": "CreatedUsers_some", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "status", + "name": "CreatedUsers_none", "description": null, "type": { - "kind": "ENUM", - "name": "CallRequestStatus", + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "startedAt", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "endedAt", + "name": "LogedIns_every", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "LogedInWhereInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CallRequestUpdateManyWithoutRoomInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "LogedIns_some", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CallRequestWhereUniqueInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "LogedInWhereInput", + "ofType": null }, "defaultValue": null }, { - "name": "set", + "name": "LogedIns_none", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CallRequestWhereUniqueInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "LogedInWhereInput", + "ofType": null }, "defaultValue": null }, { - "name": "disconnect", + "name": "Files_every", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CallRequestWhereUniqueInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "FileWhereInput", + "ofType": null }, "defaultValue": null }, { - "name": "updateMany", + "name": "Files_some", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CallRequestUpdateManyWithWhereNestedInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "FileWhereInput", + "ofType": null }, "defaultValue": null }, { - "name": "deleteMany", + "name": "Files_none", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CallRequestScalarWhereInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "FileWhereInput", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CallRequestUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "EthContractSourcesCreated_every", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CallRequestScalarWhereInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "EthContractSourceWhereInput", + "ofType": null }, "defaultValue": null }, { - "name": "data", + "name": "EthContractSourcesCreated_some", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CallRequestUpdateManyDataInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "EthContractSourceWhereInput", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CallRequestUpdateWithoutRoomDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "called_descriptions", + "name": "EthContractSourcesCreated_none", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", + "kind": "INPUT_OBJECT", + "name": "EthContractSourceWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "caller_descriptions", + "name": "EthAccounts_every", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", + "kind": "INPUT_OBJECT", + "name": "EthAccountWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "status", + "name": "EthAccounts_some", "description": null, "type": { - "kind": "ENUM", - "name": "CallRequestStatus", + "kind": "INPUT_OBJECT", + "name": "EthAccountWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "startedAt", + "name": "EthAccounts_none", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "EthAccountWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "endedAt", + "name": "Resources_every", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "ResourceWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "Called", + "name": "Resources_some", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredInput", + "name": "ResourceWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "Caller", + "name": "Resources_none", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "name": "ResourceWhereInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CallRequestUpdateWithWhereUniqueWithoutRoomInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "Rooms_every", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CallRequestWhereUniqueInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "ChatRoomWhereInput", + "ofType": null }, "defaultValue": null }, { - "name": "data", + "name": "Rooms_some", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CallRequestUpdateWithoutRoomDataInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "ChatRoomWhereInput", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CallRequestUpsertWithWhereUniqueWithoutRoomInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "Rooms_none", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CallRequestWhereUniqueInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "ChatRoomWhereInput", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CareerCreateOneWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "CreatedRooms_every", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CareerWhereUniqueInput", + "name": "ChatRoomWhereInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CareerCreateWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "CreatedRooms_some", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "ChatRoomWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "CreatedRooms_none", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ChatRoomWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "description", + "name": "Messages_every", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ChatMessageWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "start_date", + "name": "Messages_some", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "ChatMessageWhereInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CareerUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", + "name": "Messages_none", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ChatMessageWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "description", + "name": "ReadedMessages_every", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "start_date", + "name": "ReadedMessages_some", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedWhereInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CareerUpdateOneWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "ReadedMessages_none", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CareerWhereUniqueInput", + "name": "ChatMessageReadedWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "disconnect", + "name": "Notices_every", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "NoticeWhereInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CareerUpdateWithoutCreatedByDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", + "name": "Notices_some", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NoticeWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "description", + "name": "Notices_none", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NoticeWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "start_date", + "name": "Votes_every", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "VoteWhereInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "Votes_some", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageWhereUniqueInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "VoteWhereInput", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutRoomInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateOneInput", - "description": null, - "fields": null, - "inputFields": [ + "name": "Votes_none", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "VoteWhereInput", + "ofType": null + }, + "defaultValue": null + }, { - "name": "connect", + "name": "NotificationTypes_every", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageWhereUniqueInput", + "name": "NotificationTypeWhereInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "NotificationTypes_some", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "NotificationTypeWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "content", + "name": "NotificationTypes_none", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", + "kind": "INPUT_OBJECT", + "name": "NotificationTypeWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "contentText", + "name": "NotificationTypesCreated_every", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotificationTypeWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "Room", + "name": "NotificationTypesCreated_some", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateOneWithoutMessagesInput", + "name": "NotificationTypeWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "ReadedBy", + "name": "NotificationTypesCreated_none", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateManyWithoutMessageInput", + "name": "NotificationTypeWhereInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateManyWithoutMessageInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "Tags_every", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedWhereUniqueInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "TagWhereInput", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "Tags_some", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "TagWhereInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateWithoutReadedByInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "Tags_none", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "TagWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "content", + "name": "ResourceTags_every", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", + "kind": "INPUT_OBJECT", + "name": "ResourceTagWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "contentText", + "name": "ResourceTags_some", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ResourceTagWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "ResourceTags_none", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutMessagesInput", + "name": "ResourceTagWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "Room", + "name": "PrismaProjects_every", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateOneWithoutMessagesInput", + "name": "ProjectWhereInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutMessagesInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "PrismaProjects_some", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", + "name": "ProjectWhereInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateWithoutRoomInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "PrismaProjects_none", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "ProjectWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "content", + "name": "topics_every", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", + "kind": "INPUT_OBJECT", + "name": "TopicWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "contentText", + "name": "topics_some", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "TopicWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "topics_none", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutMessagesInput", + "name": "TopicWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "ReadedBy", + "name": "comments_every", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateManyWithoutMessageInput", + "name": "CommentWhereInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ChatMessageReadedConnection", - "description": "A connection to a list of items.", - "fields": [ + }, { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], + "name": "comments_some", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "CommentWhereInput", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "edges", - "description": "A list of edges.", - "args": [], + "name": "comments_none", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChatMessageReadedEdge", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "CommentWhereInput", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "aggregate", + "name": "Tarifs_every", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateChatMessageReaded", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "UserTarifWhereInput", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ChatMessageReadedEdge", - "description": "An edge in a connection.", - "fields": [ + "defaultValue": null + }, { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], + "name": "Tarifs_some", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChatMessageReaded", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "UserTarifWhereInput", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], + "name": "Tarifs_none", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "UserTarifWhereInput", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateManyWithoutUserInput", - "description": null, - "fields": null, - "inputFields": [ + "defaultValue": null + }, { - "name": "connect", + "name": "Account", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedWhereUniqueInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "AccountWhereInput", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateWithoutMessageInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "Places_every", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "PlaceWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "User", + "name": "Places_some", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutReadedMessagesInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "PlaceWhereInput", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutReadedMessagesInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "Places_none", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", + "name": "PlaceWhereInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateWithoutUserInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "search", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Message", + "name": "showHidden", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateOneWithoutReadedByInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null } @@ -169971,7 +15512,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedScalarWhereInput", + "name": "LogedInWhereInput", "description": null, "fields": null, "inputFields": [ @@ -169986,7 +15527,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedScalarWhereInput", + "name": "LogedInWhereInput", "ofType": null } } @@ -170004,7 +15545,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedScalarWhereInput", + "name": "LogedInWhereInput", "ofType": null } } @@ -170022,7 +15563,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedScalarWhereInput", + "name": "LogedInWhereInput", "ofType": null } } @@ -170282,28 +15823,49 @@ "defaultValue": null }, { - "name": "updatedAt", + "name": "fake", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_not", + "name": "fake_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", + "name": "User", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "FileWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": "Logical AND on all given filters.", "type": { "kind": "LIST", "name": null, @@ -170311,8 +15873,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "FileWhereInput", "ofType": null } } @@ -170320,8 +15882,8 @@ "defaultValue": null }, { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", + "name": "OR", + "description": "Logical OR on all given filters.", "type": { "kind": "LIST", "name": null, @@ -170329,8 +15891,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "FileWhereInput", "ofType": null } } @@ -170338,251 +15900,202 @@ "defaultValue": null }, { - "name": "updatedAt_lt", - "description": "All values less than the given value.", + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FileWhereInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", + "name": "id_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", + "name": "id_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", + "name": "id_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "Message", - "description": null, + "name": "id_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateOneRequiredWithoutReadedByInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "User", - "description": null, + "name": "id_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutReadedMessagesInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateOneRequiredWithoutReadedByInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "id_contains", + "description": "All values containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageWhereUniqueInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutReadedMessagesInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "id_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutMessageInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "id_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "set", - "description": null, + "name": "id_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "disconnect", - "description": null, + "name": "id_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "deleteMany", - "description": null, + "name": "id_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedScalarWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutUserInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "path", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "set", - "description": null, + "name": "path_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "disconnect", - "description": null, + "name": "path_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -170590,8 +16103,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedWhereUniqueInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -170599,8 +16112,8 @@ "defaultValue": null }, { - "name": "deleteMany", - "description": null, + "name": "path_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -170608,271 +16121,136 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedScalarWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateWithoutMessageDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "User", - "description": null, + "name": "path_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutReadedMessagesInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateWithoutUserDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "Message", - "description": null, + "name": "path_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateOneRequiredWithoutReadedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateWithWhereUniqueWithoutMessageInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null }, { - "name": "data", - "description": null, + "name": "path_gt", + "description": "All values greater than the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateWithoutMessageDataInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateWithWhereUniqueWithoutUserInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", - "description": null, + "name": "path_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "data", - "description": null, + "name": "path_contains", + "description": "All values containing the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateWithoutUserDataInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpsertWithWhereUniqueWithoutMessageInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", - "description": null, + "name": "path_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpsertWithWhereUniqueWithoutUserInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", - "description": null, + "name": "path_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", - "description": "Logical AND on all given filters.", + "name": "path_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageScalarWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", + "name": "path_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageScalarWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + "name": "path_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageScalarWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "id", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_not", + "name": "name_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_in", + "name": "name_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -170882,7 +16260,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } } @@ -170890,7 +16268,7 @@ "defaultValue": null }, { - "name": "id_not_in", + "name": "name_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -170900,7 +16278,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } } @@ -170908,127 +16286,127 @@ "defaultValue": null }, { - "name": "id_lt", + "name": "name_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_lte", + "name": "name_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_gt", + "name": "name_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_gte", + "name": "name_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_contains", + "name": "name_contains", "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_not_contains", + "name": "name_not_contains", "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_starts_with", + "name": "name_starts_with", "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_not_starts_with", + "name": "name_not_starts_with", "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_ends_with", + "name": "name_ends_with", "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_not_ends_with", + "name": "name_not_ends_with", "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "createdAt", + "name": "filename", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_not", + "name": "filename_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_in", + "name": "filename_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -171038,7 +16416,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null } } @@ -171046,7 +16424,7 @@ "defaultValue": null }, { - "name": "createdAt_not_in", + "name": "filename_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -171056,7 +16434,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null } } @@ -171064,143 +16442,107 @@ "defaultValue": null }, { - "name": "createdAt_lt", + "name": "filename_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_lte", + "name": "filename_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_gt", + "name": "filename_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_gte", + "name": "filename_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt", - "description": null, + "name": "filename_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", + "name": "filename_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", + "name": "filename_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", + "name": "filename_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", + "name": "filename_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", + "name": "filename_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "contentText", + "name": "mimetype", "description": null, "type": { "kind": "SCALAR", @@ -171210,7 +16552,7 @@ "defaultValue": null }, { - "name": "contentText_not", + "name": "mimetype_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", @@ -171220,7 +16562,7 @@ "defaultValue": null }, { - "name": "contentText_in", + "name": "mimetype_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -171238,7 +16580,7 @@ "defaultValue": null }, { - "name": "contentText_not_in", + "name": "mimetype_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -171256,7 +16598,7 @@ "defaultValue": null }, { - "name": "contentText_lt", + "name": "mimetype_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", @@ -171266,7 +16608,7 @@ "defaultValue": null }, { - "name": "contentText_lte", + "name": "mimetype_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", @@ -171276,7 +16618,7 @@ "defaultValue": null }, { - "name": "contentText_gt", + "name": "mimetype_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", @@ -171286,7 +16628,7 @@ "defaultValue": null }, { - "name": "contentText_gte", + "name": "mimetype_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", @@ -171296,7 +16638,7 @@ "defaultValue": null }, { - "name": "contentText_contains", + "name": "mimetype_contains", "description": "All values containing the given string.", "type": { "kind": "SCALAR", @@ -171306,7 +16648,7 @@ "defaultValue": null }, { - "name": "contentText_not_contains", + "name": "mimetype_not_contains", "description": "All values not containing the given string.", "type": { "kind": "SCALAR", @@ -171316,7 +16658,7 @@ "defaultValue": null }, { - "name": "contentText_starts_with", + "name": "mimetype_starts_with", "description": "All values starting with the given string.", "type": { "kind": "SCALAR", @@ -171326,7 +16668,7 @@ "defaultValue": null }, { - "name": "contentText_not_starts_with", + "name": "mimetype_not_starts_with", "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", @@ -171336,7 +16678,7 @@ "defaultValue": null }, { - "name": "contentText_ends_with", + "name": "mimetype_ends_with", "description": "All values ending with the given string.", "type": { "kind": "SCALAR", @@ -171346,7 +16688,7 @@ "defaultValue": null }, { - "name": "contentText_not_ends_with", + "name": "mimetype_not_ends_with", "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", @@ -171354,31 +16696,20 @@ "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "content", + "name": "encoding", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "contentText", - "description": null, + "name": "encoding_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", "name": "String", @@ -171387,245 +16718,164 @@ "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "encoding_in", + "description": "All values that are contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutMessagesInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Room", - "description": null, + "name": "encoding_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateOneWithoutMessagesInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "ReadedBy", - "description": null, + "name": "encoding_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutMessageInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutMessagesInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "encoding_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "disconnect", - "description": null, + "name": "encoding_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateOneWithoutMessagesInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "encoding_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereUniqueInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "disconnect", - "description": null, + "name": "encoding_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "content", - "description": null, + "name": "encoding_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "contentText", - "description": null, + "name": "encoding_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "content", - "description": null, + "name": "encoding_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "contentText", - "description": null, + "name": "encoding_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null }, { - "name": "set", - "description": null, + "name": "encoding_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "disconnect", + "name": "hash", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "updateMany", - "description": null, + "name": "hash_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithWhereNestedInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "deleteMany", - "description": null, + "name": "hash_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -171633,67 +16883,17 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageScalarWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageScalarWhereInput", - "ofType": null - } - }, - "defaultValue": null }, { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutRoomInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, + "name": "hash_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -171701,8 +16901,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageWhereUniqueInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -171710,132 +16910,78 @@ "defaultValue": null }, { - "name": "set", - "description": null, + "name": "hash_lt", + "description": "All values less than the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "disconnect", - "description": null, + "name": "hash_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "updateMany", - "description": null, + "name": "hash_gt", + "description": "All values greater than the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithWhereNestedInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "deleteMany", - "description": null, + "name": "hash_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageScalarWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateOneInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "hash_contains", + "description": "All values containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageWhereUniqueInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "disconnect", - "description": null, + "name": "hash_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateWithoutCreatedByDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "content", - "description": null, + "name": "hash_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "contentText", - "description": null, + "name": "hash_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -171844,227 +16990,138 @@ "defaultValue": null }, { - "name": "Room", - "description": null, + "name": "hash_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateOneWithoutMessagesInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ReadedBy", - "description": null, + "name": "hash_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutMessageInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateWithoutReadedByDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "content", + "name": "size", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "contentText", - "description": null, + "name": "size_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "size_in", + "description": "All values that are contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutMessagesInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Room", - "description": null, + "name": "size_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateOneWithoutMessagesInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateWithoutRoomDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "content", - "description": null, + "name": "size_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "contentText", - "description": null, + "name": "size_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "size_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutMessagesInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "ReadedBy", - "description": null, + "name": "size_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutMessageInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateWithWhereUniqueWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null }, { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateWithoutCreatedByDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateWithWhereUniqueWithoutRoomInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", + "name": "CreatedBy", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageWhereUniqueInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null }, "defaultValue": null }, { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateWithoutRoomDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpsertWithWhereUniqueWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", + "name": "ImageResource", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageWhereUniqueInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "ResourceWhereInput", + "ofType": null }, "defaultValue": null } @@ -172075,38 +17132,31 @@ }, { "kind": "INPUT_OBJECT", - "name": "ChatMessageUpsertWithWhereUniqueWithoutRoomInput", + "name": "ResourceWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "where", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereInput", + "ofType": null + } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { "kind": "LIST", "name": null, @@ -172115,27 +17165,16 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereUniqueInput", + "name": "ResourceWhereInput", "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutMembersInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { "kind": "LIST", "name": null, @@ -172144,45 +17183,13 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereUniqueInput", + "name": "ResourceWhereInput", "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateOneWithoutInvitationsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateWithoutCallRequestsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { "name": "id", "description": null, @@ -172194,38 +17201,8 @@ "defaultValue": null }, { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, + "name": "id_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", "name": "ID", @@ -172234,134 +17211,26 @@ "defaultValue": null }, { - "name": "isPublic", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowAnonymous", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sandbox", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Members", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutRoomsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, + "name": "id_in", + "description": "All values that are contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedRoomsInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } } }, "defaultValue": null }, { - "name": "Messages", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutRoomInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Invitations", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationCreateManyWithoutChatRoomInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Task", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateOneWithoutChatRoomInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Project", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutChatRoomInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedRoomsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationCreateManyWithoutChatRoomInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, + "name": "id_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -172369,91 +17238,47 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationWhereUniqueInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "id_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskCreateOneWithoutChatRoomInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "id_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereUniqueInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutChatRoomInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "id_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "id_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", "name": "ID", @@ -172462,38 +17287,38 @@ "defaultValue": null }, { - "name": "name", - "description": null, + "name": "id_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "id_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "image", - "description": null, + "name": "id_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "code", - "description": null, + "name": "id_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", "name": "ID", @@ -172502,109 +17327,114 @@ "defaultValue": null }, { - "name": "isPublic", - "description": null, + "name": "id_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "allowAnonymous", - "description": null, + "name": "id_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "sandbox", + "name": "code", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Members", - "description": null, + "name": "code_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutRoomsInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Messages", - "description": null, + "name": "code_in", + "description": "All values that are contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutRoomInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Invitations", - "description": null, + "name": "code_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationCreateManyWithoutChatRoomInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "CallRequests", - "description": null, + "name": "code_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "CallRequestCreateManyWithoutRoomInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Task", - "description": null, + "name": "code_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateOneWithoutChatRoomInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Project", - "description": null, + "name": "code_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutChatRoomInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateWithoutInvitationsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "code_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", "name": "ID", @@ -172613,38 +17443,38 @@ "defaultValue": null }, { - "name": "name", - "description": null, + "name": "code_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "code_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "image", - "description": null, + "name": "code_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "code", - "description": null, + "name": "code_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", "name": "ID", @@ -172653,278 +17483,342 @@ "defaultValue": null }, { - "name": "isPublic", - "description": null, + "name": "code_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "allowAnonymous", - "description": null, + "name": "code_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "sandbox", + "name": "createdAt", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Members", - "description": null, + "name": "createdAt_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutRoomsInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "createdAt_in", + "description": "All values that are contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedRoomsInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } } }, "defaultValue": null }, { - "name": "Messages", - "description": null, + "name": "createdAt_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutRoomInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "CallRequests", - "description": null, + "name": "createdAt_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "CallRequestCreateManyWithoutRoomInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Task", - "description": null, + "name": "createdAt_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateOneWithoutChatRoomInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Project", - "description": null, + "name": "createdAt_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutChatRoomInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateWithoutMembersInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "createdAt_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "updatedAt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "updatedAt_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "image", - "description": null, + "name": "updatedAt_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "updatedAt_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "updatedAt_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "code", - "description": null, + "name": "updatedAt_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "isPublic", - "description": null, + "name": "updatedAt_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "allowAnonymous", - "description": null, + "name": "updatedAt_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "sandbox", + "name": "type", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "ResourceType", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "type_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "NON_NULL", + "kind": "ENUM", + "name": "ResourceType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedRoomsInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ResourceType", + "ofType": null + } } }, "defaultValue": null }, { - "name": "Messages", - "description": null, + "name": "type_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutRoomInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ResourceType", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Invitations", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationCreateManyWithoutChatRoomInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CallRequests", - "description": null, + "name": "name_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "CallRequestCreateManyWithoutRoomInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Task", - "description": null, + "name": "name_in", + "description": "All values that are contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateOneWithoutChatRoomInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Project", - "description": null, + "name": "name_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutChatRoomInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateWithoutMessagesInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "name_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "name", - "description": null, + "name": "name_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -172933,8 +17827,8 @@ "defaultValue": null }, { - "name": "description", - "description": null, + "name": "name_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -172943,8 +17837,8 @@ "defaultValue": null }, { - "name": "image", - "description": null, + "name": "name_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -172953,133 +17847,134 @@ "defaultValue": null }, { - "name": "code", - "description": null, + "name": "name_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "isPublic", - "description": null, + "name": "name_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "allowAnonymous", - "description": null, + "name": "name_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "sandbox", - "description": null, + "name": "name_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Members", - "description": null, + "name": "name_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutRoomsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "name_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedRoomsInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "Invitations", + "name": "longtitle", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationCreateManyWithoutChatRoomInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CallRequests", - "description": null, + "name": "longtitle_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "CallRequestCreateManyWithoutRoomInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Task", - "description": null, + "name": "longtitle_in", + "description": "All values that are contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateOneWithoutChatRoomInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Project", - "description": null, + "name": "longtitle_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutChatRoomInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateWithoutProjectInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "longtitle_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "name", - "description": null, + "name": "longtitle_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -173088,8 +17983,8 @@ "defaultValue": null }, { - "name": "description", - "description": null, + "name": "longtitle_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -173098,8 +17993,8 @@ "defaultValue": null }, { - "name": "image", - "description": null, + "name": "longtitle_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -173108,133 +18003,134 @@ "defaultValue": null }, { - "name": "code", - "description": null, + "name": "longtitle_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "isPublic", - "description": null, + "name": "longtitle_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "allowAnonymous", - "description": null, + "name": "longtitle_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "sandbox", - "description": null, + "name": "longtitle_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Members", - "description": null, + "name": "longtitle_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutRoomsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "longtitle_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedRoomsInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "contentText", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutRoomInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Invitations", - "description": null, + "name": "contentText_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationCreateManyWithoutChatRoomInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CallRequests", - "description": null, + "name": "contentText_in", + "description": "All values that are contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "CallRequestCreateManyWithoutRoomInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Task", - "description": null, + "name": "contentText_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateOneWithoutChatRoomInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateWithoutTaskInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "contentText_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "name", - "description": null, + "name": "contentText_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -173243,8 +18139,8 @@ "defaultValue": null }, { - "name": "description", - "description": null, + "name": "contentText_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -173253,8 +18149,8 @@ "defaultValue": null }, { - "name": "image", - "description": null, + "name": "contentText_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -173263,598 +18159,343 @@ "defaultValue": null }, { - "name": "code", - "description": null, + "name": "contentText_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "isPublic", - "description": null, + "name": "contentText_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "allowAnonymous", - "description": null, + "name": "contentText_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "sandbox", - "description": null, + "name": "contentText_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Members", - "description": null, + "name": "contentText_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutRoomsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedRoomsInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "Messages", - "description": null, + "name": "contentText_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutRoomInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Invitations", + "name": "published", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationCreateManyWithoutChatRoomInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CallRequests", - "description": null, + "name": "published_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "CallRequestCreateManyWithoutRoomInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Project", + "name": "deleted", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutChatRoomInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ChatRoomInvitationConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChatRoomInvitationEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateChatRoomInvitation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ChatRoomInvitationEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChatRoomInvitation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, + "name": "deleted_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "User", + "name": "hidemenu", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null }, { - "name": "ChatRoom", - "description": null, + "name": "hidemenu_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateOneWithoutInvitationsInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null }, { - "name": "Notice", + "name": "searchable", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeCreateOneWithoutChatRoomInvitationInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NoticeCreateOneWithoutChatRoomInvitationInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "searchable_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeWhereUniqueInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationCreateOneWithoutNoticeInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "uri", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationWhereUniqueInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationCreateWithoutChatRoomInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "uri_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "uri_in", + "description": "All values that are contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null }, { - "name": "User", - "description": null, + "name": "uri_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null }, { - "name": "Notice", - "description": null, + "name": "uri_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeCreateOneWithoutChatRoomInvitationInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationCreateWithoutNoticeInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "uri_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "uri_gt", + "description": "All values greater than the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "User", - "description": null, + "name": "uri_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "ChatRoom", - "description": null, + "name": "uri_contains", + "description": "All values containing the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateOneWithoutInvitationsInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ChatRoomInvitationPreviousValues", - "description": null, - "fields": [ + }, { - "name": "id", - "description": null, - "args": [], + "name": "uri_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "createdAt", - "description": null, - "args": [], + "name": "uri_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedAt", - "description": null, - "args": [], + "name": "uri_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ + "defaultValue": null + }, { - "name": "AND", - "description": "Logical AND on all given filters.", + "name": "uri_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationScalarWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", + "name": "uri_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationScalarWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + "name": "isfolder", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationScalarWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null }, { - "name": "id", + "name": "isfolder_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "rating", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "id_not", + "name": "rating_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "id_in", + "name": "rating_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -173864,7 +18505,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "Float", "ofType": null } } @@ -173872,7 +18513,7 @@ "defaultValue": null }, { - "name": "id_not_in", + "name": "rating_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -173882,7 +18523,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "Float", "ofType": null } } @@ -173890,127 +18531,163 @@ "defaultValue": null }, { - "name": "id_lt", + "name": "rating_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "id_lte", + "name": "rating_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "id_gt", + "name": "rating_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "id_gte", + "name": "rating_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "id_contains", - "description": "All values containing the given string.", + "name": "positiveVotesCount", + "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "id_not_contains", - "description": "All values not containing the given string.", + "name": "positiveVotesCount_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "id_starts_with", - "description": "All values starting with the given string.", + "name": "positiveVotesCount_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "positiveVotesCount_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "positiveVotesCount_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", + "name": "positiveVotesCount_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "id_ends_with", - "description": "All values ending with the given string.", + "name": "positiveVotesCount_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", + "name": "positiveVotesCount_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "createdAt", + "name": "negativeVotesCount", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_not", + "name": "negativeVotesCount_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_in", + "name": "negativeVotesCount_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -174020,7 +18697,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null } } @@ -174028,7 +18705,7 @@ "defaultValue": null }, { - "name": "createdAt_not_in", + "name": "negativeVotesCount_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -174038,7 +18715,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null } } @@ -174046,67 +18723,67 @@ "defaultValue": null }, { - "name": "createdAt_lt", + "name": "negativeVotesCount_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_lte", + "name": "negativeVotesCount_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_gt", + "name": "negativeVotesCount_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_gte", + "name": "negativeVotesCount_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt", + "name": "neutralVotesCount", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_not", + "name": "neutralVotesCount_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_in", + "name": "neutralVotesCount_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -174116,7 +18793,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null } } @@ -174124,7 +18801,7 @@ "defaultValue": null }, { - "name": "updatedAt_not_in", + "name": "neutralVotesCount_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -174134,7 +18811,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null } } @@ -174142,41 +18819,211 @@ "defaultValue": null }, { - "name": "updatedAt_lt", + "name": "neutralVotesCount_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_lte", + "name": "neutralVotesCount_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_gt", + "name": "neutralVotesCount_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_gte", + "name": "neutralVotesCount_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "CreatedBy", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Parent", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Childs_every", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Childs_some", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Childs_none", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Image", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FileWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "PrismaProject", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "CommentTarget", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Comments_every", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Comments_some", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Comments_none", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Votes_every", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "VoteWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Votes_some", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "VoteWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Votes_none", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "VoteWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Tags_every", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceTagWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Tags_some", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceTagWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Tags_none", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceTagWhereInput", "ofType": null }, "defaultValue": null @@ -174187,79 +19034,43 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "ChatRoomInvitationSubscriptionPayload", + "kind": "ENUM", + "name": "ResourceType", "description": null, - "fields": [ + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "mutation", + "name": "Resource", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "Blog", "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ChatRoomInvitation", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedFields", + "name": "Topic", "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "previousValues", + "name": "Comment", "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ChatRoomInvitationPreviousValues", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationSubscriptionWhereInput", + "name": "ProjectWhereInput", "description": null, "fields": null, "inputFields": [ @@ -174274,7 +19085,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationSubscriptionWhereInput", + "name": "ProjectWhereInput", "ofType": null } } @@ -174292,7 +19103,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationSubscriptionWhereInput", + "name": "ProjectWhereInput", "ofType": null } } @@ -174310,7 +19121,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationSubscriptionWhereInput", + "name": "ProjectWhereInput", "ofType": null } } @@ -174318,36 +19129,28 @@ "defaultValue": null }, { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", + "name": "id", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", + "name": "id_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", + "name": "id_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -174356,7 +19159,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } } @@ -174364,8 +19167,8 @@ "defaultValue": null }, { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", + "name": "id_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -174374,7 +19177,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } } @@ -174382,168 +19185,128 @@ "defaultValue": null }, { - "name": "node", - "description": null, + "name": "id_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationWhereInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationUpdateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "CreatedBy", - "description": null, + "name": "id_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "User", - "description": null, + "name": "id_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "ChatRoom", - "description": null, + "name": "id_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateOneRequiredWithoutInvitationsInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Notice", - "description": null, + "name": "id_contains", + "description": "All values containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeUpdateOneWithoutChatRoomInvitationInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateOneRequiredWithoutInvitationsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "id_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereUniqueInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NoticeUpdateOneWithoutChatRoomInvitationInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "id_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeWhereUniqueInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "disconnect", - "description": null, + "name": "id_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationUpdateManyWithoutChatRoomInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "id_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "set", - "description": null, + "name": "id_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "disconnect", + "name": "domain", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "domain_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "domain_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -174551,8 +19314,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationWhereUniqueInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -174560,8 +19323,8 @@ "defaultValue": null }, { - "name": "deleteMany", - "description": null, + "name": "domain_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -174569,188 +19332,171 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationScalarWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationUpdateOneWithoutNoticeInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "domain_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationWhereUniqueInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "disconnect", - "description": null, + "name": "domain_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationUpdateWithoutChatRoomDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "CreatedBy", - "description": null, + "name": "domain_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "User", - "description": null, + "name": "domain_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Notice", - "description": null, + "name": "domain_contains", + "description": "All values containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeUpdateOneWithoutChatRoomInvitationInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationUpdateWithoutNoticeDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "CreatedBy", - "description": null, + "name": "domain_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "User", + "name": "domain_starts_with", + "description": "All values starting with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "domain_not_starts_with", + "description": "All values not starting with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "domain_ends_with", + "description": "All values ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "domain_not_ends_with", + "description": "All values not ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "PrismaResources_every", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredInput", + "name": "ResourceWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "ChatRoom", + "name": "PrismaResources_some", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateOneRequiredWithoutInvitationsInput", + "name": "ResourceWhereInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationUpdateWithWhereUniqueWithoutChatRoomInput", - "description": null, - "fields": null, - "inputFields": [ + }, + { + "name": "PrismaResources_none", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereInput", + "ofType": null + }, + "defaultValue": null + }, { - "name": "where", + "name": "PrismaUsers_every", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationWhereUniqueInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null }, "defaultValue": null }, { - "name": "data", + "name": "PrismaUsers_some", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationUpdateWithoutChatRoomDataInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationUpsertWithWhereUniqueWithoutChatRoomInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "PrismaUsers_none", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationWhereUniqueInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null }, "defaultValue": null } @@ -174761,7 +19507,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "ChatRoomScalarWhereInput", + "name": "VoteWhereInput", "description": null, "fields": null, "inputFields": [ @@ -174776,7 +19522,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ChatRoomScalarWhereInput", + "name": "VoteWhereInput", "ofType": null } } @@ -174794,7 +19540,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ChatRoomScalarWhereInput", + "name": "VoteWhereInput", "ofType": null } } @@ -174812,7 +19558,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ChatRoomScalarWhereInput", + "name": "VoteWhereInput", "ofType": null } } @@ -175168,27 +19914,27 @@ "defaultValue": null }, { - "name": "name", + "name": "value", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "name_not", + "name": "value_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "name_in", + "name": "value_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -175198,7 +19944,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } } @@ -175206,7 +19952,7 @@ "defaultValue": null }, { - "name": "name_not_in", + "name": "value_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -175216,7 +19962,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } } @@ -175224,127 +19970,152 @@ "defaultValue": null }, { - "name": "name_lt", + "name": "value_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "name_lte", + "name": "value_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "name_gt", + "name": "value_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "name_gte", + "name": "value_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "name_not_contains", - "description": "All values not containing the given string.", + "name": "Resource", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ResourceWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "name_starts_with", - "description": "All values starting with the given string.", + "name": "User", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceTagWhereInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceTagWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "name_ends_with", - "description": "All values ending with the given string.", + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceTagWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceTagWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "description", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "description_not", + "name": "id_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "description_in", + "name": "id_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -175354,7 +20125,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } } @@ -175362,7 +20133,7 @@ "defaultValue": null }, { - "name": "description_not_in", + "name": "id_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -175372,7 +20143,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } } @@ -175380,127 +20151,127 @@ "defaultValue": null }, { - "name": "description_lt", + "name": "id_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "description_lte", + "name": "id_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "description_gt", + "name": "id_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "description_gte", + "name": "id_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "description_contains", + "name": "id_contains", "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "description_not_contains", + "name": "id_not_contains", "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "description_starts_with", + "name": "id_starts_with", "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "description_not_starts_with", + "name": "id_not_starts_with", "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "description_ends_with", + "name": "id_ends_with", "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "description_not_ends_with", + "name": "id_not_ends_with", "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "image", + "name": "createdAt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "image_not", + "name": "createdAt_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "image_in", + "name": "createdAt_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -175510,7 +20281,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null } } @@ -175518,7 +20289,7 @@ "defaultValue": null }, { - "name": "image_not_in", + "name": "createdAt_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -175528,7 +20299,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null } } @@ -175536,127 +20307,67 @@ "defaultValue": null }, { - "name": "image_lt", + "name": "createdAt_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "image_lte", + "name": "createdAt_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "image_gt", + "name": "createdAt_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "image_gte", + "name": "createdAt_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "code", + "name": "updatedAt", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "code_not", + "name": "updatedAt_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "code_in", + "name": "updatedAt_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -175666,7 +20377,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null } } @@ -175674,7 +20385,7 @@ "defaultValue": null }, { - "name": "code_not_in", + "name": "updatedAt_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -175684,7 +20395,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null } } @@ -175692,341 +20403,68 @@ "defaultValue": null }, { - "name": "code_lt", + "name": "updatedAt_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "code_lte", + "name": "updatedAt_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "code_gt", + "name": "updatedAt_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "code_gte", + "name": "updatedAt_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isPublic", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isPublic_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowAnonymous", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowAnonymous_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "sandbox", + "name": "status", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "TagStatus", "ofType": null }, "defaultValue": null }, { - "name": "sandbox_not", + "name": "status_not", "description": "All values that are not equal to given value.", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isPublic", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowAnonymous", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sandbox", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isPublic", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowAnonymous", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "TagStatus", "ofType": null }, "defaultValue": null }, { - "name": "sandbox", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, + "name": "status_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -176034,8 +20472,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereUniqueInput", + "kind": "ENUM", + "name": "TagStatus", "ofType": null } } @@ -176043,8 +20481,8 @@ "defaultValue": null }, { - "name": "set", - "description": null, + "name": "status_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -176052,8 +20490,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereUniqueInput", + "kind": "ENUM", + "name": "TagStatus", "ofType": null } } @@ -176061,56 +20499,32 @@ "defaultValue": null }, { - "name": "disconnect", + "name": "Resource", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereUniqueInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "ResourceWhereInput", + "ofType": null }, "defaultValue": null }, { - "name": "updateMany", + "name": "Tag", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithWhereNestedInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "TagWhereInput", + "ofType": null }, "defaultValue": null }, { - "name": "deleteMany", + "name": "CreatedBy", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomScalarWhereInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null }, "defaultValue": null } @@ -176120,89 +20534,43 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithWhereNestedInput", + "kind": "ENUM", + "name": "TagStatus", "description": null, "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "where", + "name": "Active", "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomScalarWhereInput", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", + "name": "Moderated", "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Blocked", + "description": null, + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutMembersInput", + "name": "TagWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { "kind": "LIST", "name": null, @@ -176211,7 +20579,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereUniqueInput", + "name": "TagWhereInput", "ofType": null } } @@ -176219,8 +20587,8 @@ "defaultValue": null }, { - "name": "updateMany", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { "kind": "LIST", "name": null, @@ -176229,7 +20597,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithWhereNestedInput", + "name": "TagWhereInput", "ofType": null } } @@ -176237,8 +20605,8 @@ "defaultValue": null }, { - "name": "deleteMany", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { "kind": "LIST", "name": null, @@ -176247,674 +20615,470 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ChatRoomScalarWhereInput", + "name": "TagWhereInput", "ofType": null } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateWithoutCallRequestsDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isPublic", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowAnonymous", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sandbox", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Members", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutRoomsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutCreatedRoomsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Messages", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutRoomInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Invitations", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationUpdateManyWithoutChatRoomInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Task", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateOneWithoutChatRoomInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Project", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutChatRoomInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutCreatedRoomsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateOneWithoutChatRoomInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutChatRoomInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateWithoutCreatedByDataInput", - "description": null, - "fields": null, - "inputFields": [ + } + }, + "defaultValue": null + }, { - "name": "name", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "id_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "image", - "description": null, + "name": "id_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "code", - "description": null, + "name": "id_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "isPublic", - "description": null, + "name": "id_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "allowAnonymous", - "description": null, + "name": "id_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "sandbox", - "description": null, + "name": "id_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Members", - "description": null, + "name": "id_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutRoomsInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Messages", - "description": null, + "name": "id_contains", + "description": "All values containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutRoomInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Invitations", - "description": null, + "name": "id_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationUpdateManyWithoutChatRoomInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "CallRequests", - "description": null, + "name": "id_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "CallRequestUpdateManyWithoutRoomInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Task", - "description": null, + "name": "id_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateOneWithoutChatRoomInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Project", - "description": null, + "name": "id_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutChatRoomInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateWithoutInvitationsDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", - "description": null, + "name": "id_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "description", + "name": "createdAt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "image", - "description": null, + "name": "createdAt_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "code", - "description": null, + "name": "createdAt_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "isPublic", - "description": null, + "name": "createdAt_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "allowAnonymous", - "description": null, + "name": "createdAt_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "sandbox", - "description": null, + "name": "createdAt_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Members", - "description": null, + "name": "createdAt_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutRoomsInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "createdAt_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutCreatedRoomsInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "updatedAt", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutRoomInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "CallRequests", - "description": null, + "name": "updatedAt_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "CallRequestUpdateManyWithoutRoomInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Task", - "description": null, + "name": "updatedAt_in", + "description": "All values that are contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateOneWithoutChatRoomInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Project", - "description": null, + "name": "updatedAt_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutChatRoomInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateWithoutMembersDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", - "description": null, + "name": "updatedAt_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "updatedAt_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "image", - "description": null, + "name": "updatedAt_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "code", - "description": null, + "name": "updatedAt_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "isPublic", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "allowAnonymous", - "description": null, + "name": "name_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "sandbox", - "description": null, + "name": "name_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "name_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutCreatedRoomsInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Messages", - "description": null, + "name": "name_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutRoomInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Invitations", - "description": null, + "name": "name_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationUpdateManyWithoutChatRoomInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CallRequests", - "description": null, + "name": "name_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "CallRequestUpdateManyWithoutRoomInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Task", - "description": null, + "name": "name_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateOneWithoutChatRoomInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Project", - "description": null, + "name": "name_contains", + "description": "All values containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutChatRoomInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateWithoutMessagesDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", - "description": null, + "name": "name_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -176923,8 +21087,8 @@ "defaultValue": null }, { - "name": "description", - "description": null, + "name": "name_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -176933,8 +21097,8 @@ "defaultValue": null }, { - "name": "image", - "description": null, + "name": "name_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -176943,101 +21107,117 @@ "defaultValue": null }, { - "name": "code", - "description": null, + "name": "name_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "isPublic", - "description": null, + "name": "name_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "allowAnonymous", + "name": "status", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "TagStatus", "ofType": null }, "defaultValue": null }, { - "name": "sandbox", - "description": null, + "name": "status_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "TagStatus", "ofType": null }, "defaultValue": null }, { - "name": "Members", - "description": null, + "name": "status_in", + "description": "All values that are contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutRoomsInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TagStatus", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "status_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutCreatedRoomsInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TagStatus", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Invitations", + "name": "Resources_every", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationUpdateManyWithoutChatRoomInput", + "name": "ResourceTagWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "CallRequests", + "name": "Resources_some", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CallRequestUpdateManyWithoutRoomInput", + "name": "ResourceTagWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "Task", + "name": "Resources_none", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskUpdateOneWithoutChatRoomInput", + "name": "ResourceTagWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "Project", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutChatRoomInput", + "name": "UserWhereInput", "ofType": null }, "defaultValue": null @@ -177049,42 +21229,66 @@ }, { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateWithoutProjectDataInput", + "name": "EthContractSourceWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "name", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthContractSourceWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthContractSourceWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "image", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthContractSourceWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "code", + "name": "id", "description": null, "type": { "kind": "SCALAR", @@ -177094,139 +21298,144 @@ "defaultValue": null }, { - "name": "isPublic", - "description": null, + "name": "id_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "allowAnonymous", - "description": null, + "name": "id_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "sandbox", - "description": null, + "name": "id_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Members", - "description": null, + "name": "id_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutRoomsInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "id_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutCreatedRoomsInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Messages", - "description": null, + "name": "id_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutRoomInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Invitations", - "description": null, + "name": "id_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationUpdateManyWithoutChatRoomInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "CallRequests", - "description": null, + "name": "id_contains", + "description": "All values containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "CallRequestUpdateManyWithoutRoomInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Task", - "description": null, + "name": "id_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateOneWithoutChatRoomInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateWithoutTaskDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", - "description": null, + "name": "id_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "id_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "image", - "description": null, + "name": "id_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "code", - "description": null, + "name": "id_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", "name": "ID", @@ -177235,246 +21444,199 @@ "defaultValue": null }, { - "name": "isPublic", + "name": "createdAt", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "allowAnonymous", - "description": null, + "name": "createdAt_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "sandbox", - "description": null, + "name": "createdAt_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Members", - "description": null, + "name": "createdAt_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutRoomsInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "createdAt_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutCreatedRoomsInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Messages", - "description": null, + "name": "createdAt_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutRoomInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Invitations", - "description": null, + "name": "createdAt_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationUpdateManyWithoutChatRoomInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "CallRequests", - "description": null, + "name": "createdAt_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "CallRequestUpdateManyWithoutRoomInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Project", + "name": "updatedAt", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutChatRoomInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateWithWhereUniqueWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", - "description": null, + "name": "updatedAt_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, "defaultValue": null }, { - "name": "data", - "description": null, + "name": "updatedAt_in", + "description": "All values that are contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateWithoutCreatedByDataInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateWithWhereUniqueWithoutMembersInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", - "description": null, + "name": "updatedAt_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } } }, "defaultValue": null }, { - "name": "data", - "description": null, + "name": "updatedAt_lt", + "description": "All values less than the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateWithoutMembersDataInput", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpsertWithWhereUniqueWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", - "description": null, + "name": "updatedAt_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpsertWithWhereUniqueWithoutMembersInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", - "description": null, + "name": "updatedAt_gt", + "description": "All values greater than the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockCreateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "updatedAt_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "externalKey", + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -177484,8 +21646,8 @@ "defaultValue": null }, { - "name": "name", - "description": null, + "name": "name_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", "name": "String", @@ -177494,179 +21656,124 @@ "defaultValue": null }, { - "name": "rank", - "description": null, + "name": "name_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Parent", - "description": null, + "name": "name_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockCreateOneWithoutChildrenInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Children", - "description": null, + "name": "name_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockCreateManyWithoutParentInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "name_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Challenges", - "description": null, + "name": "name_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCreateManyWithoutBlockInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockCreateOneWithoutChildrenInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "name_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockWhereUniqueInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockCreateManyWithoutParentInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "name_contains", + "description": "All values containing the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCreateManyWithoutBlockInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "name_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockCreateOneWithoutChallengesInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "name_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockWhereUniqueInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockCreateWithoutChallengesInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "name_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "externalKey", - "description": null, + "name": "name_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -177675,8 +21782,8 @@ "defaultValue": null }, { - "name": "name", - "description": null, + "name": "name_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -177685,69 +21792,74 @@ "defaultValue": null }, { - "name": "rank", + "name": "source", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Parent", - "description": null, + "name": "source_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockCreateOneWithoutChildrenInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Children", - "description": null, + "name": "source_in", + "description": "All values that are contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockCreateManyWithoutParentInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "source_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockCreateWithoutChildrenInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "source_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "externalKey", - "description": null, + "name": "source_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -177756,8 +21868,8 @@ "defaultValue": null }, { - "name": "name", - "description": null, + "name": "source_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -177766,69 +21878,58 @@ "defaultValue": null }, { - "name": "rank", - "description": null, + "name": "source_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Parent", - "description": null, + "name": "source_contains", + "description": "All values containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockCreateOneWithoutChildrenInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "source_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Challenges", - "description": null, + "name": "source_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCreateManyWithoutBlockInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockCreateWithoutParentInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "source_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "externalKey", - "description": null, + "name": "source_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -177837,8 +21938,8 @@ "defaultValue": null }, { - "name": "name", - "description": null, + "name": "source_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -177847,41 +21948,41 @@ "defaultValue": null }, { - "name": "rank", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "Children", + "name": "Accounts_every", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockCreateManyWithoutParentInput", + "name": "EthAccountWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "Accounts_some", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "name": "EthAccountWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "Challenges", + "name": "Accounts_none", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCreateManyWithoutBlockInput", + "name": "EthAccountWhereInput", "ofType": null }, "defaultValue": null @@ -177893,7 +21994,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockScalarWhereInput", + "name": "EthAccountWhereInput", "description": null, "fields": null, "inputFields": [ @@ -177908,7 +22009,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockScalarWhereInput", + "name": "EthAccountWhereInput", "ofType": null } } @@ -177926,7 +22027,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockScalarWhereInput", + "name": "EthAccountWhereInput", "ofType": null } } @@ -177944,7 +22045,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockScalarWhereInput", + "name": "EthAccountWhereInput", "ofType": null } } @@ -178107,162 +22208,6 @@ }, "defaultValue": null }, - { - "name": "externalKey", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "externalKey_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "externalKey_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalKey_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, { "name": "createdAt", "description": null, @@ -178612,27 +22557,27 @@ "defaultValue": null }, { - "name": "rank", + "name": "address", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "rank_not", + "name": "address_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "rank_in", + "name": "address_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -178642,7 +22587,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } } @@ -178650,7 +22595,7 @@ "defaultValue": null }, { - "name": "rank_not_in", + "name": "address_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -178660,7 +22605,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } } @@ -178668,59 +22613,48 @@ "defaultValue": null }, { - "name": "rank_lt", + "name": "address_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "rank_lte", + "name": "address_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "rank_gt", + "name": "address_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "rank_gte", + "name": "address_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockUpdateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "externalKey", - "description": null, + "name": "address_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -178729,8 +22663,8 @@ "defaultValue": null }, { - "name": "name", - "description": null, + "name": "address_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -178739,100 +22673,68 @@ "defaultValue": null }, { - "name": "rank", - "description": null, + "name": "address_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Parent", - "description": null, + "name": "address_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockUpdateOneWithoutChildrenInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Children", - "description": null, + "name": "address_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockUpdateManyWithoutParentInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "address_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Challenges", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeUpdateManyWithoutBlockInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockUpdateOneWithoutChildrenInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", + "name": "type", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockWhereUniqueInput", + "kind": "ENUM", + "name": "EthAccountType", "ofType": null }, "defaultValue": null }, { - "name": "disconnect", - "description": null, + "name": "type_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "EthAccountType", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockUpdateManyWithoutParentInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "type_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -178840,8 +22742,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockWhereUniqueInput", + "kind": "ENUM", + "name": "EthAccountType", "ofType": null } } @@ -178849,8 +22751,8 @@ "defaultValue": null }, { - "name": "set", - "description": null, + "name": "type_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -178858,8 +22760,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockWhereUniqueInput", + "kind": "ENUM", + "name": "EthAccountType", "ofType": null } } @@ -178867,26 +22769,28 @@ "defaultValue": null }, { - "name": "disconnect", + "name": "source", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "updateMany", - "description": null, + "name": "source_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "source_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -178894,8 +22798,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockUpdateManyWithWhereNestedInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -178903,8 +22807,8 @@ "defaultValue": null }, { - "name": "deleteMany", - "description": null, + "name": "source_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -178912,67 +22816,17 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockScalarWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockScalarWhereInput", - "ofType": null - } - }, - "defaultValue": null }, { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "externalKey", - "description": null, + "name": "source_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -178981,8 +22835,8 @@ "defaultValue": null }, { - "name": "name", - "description": null, + "name": "source_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -178991,242 +22845,107 @@ "defaultValue": null }, { - "name": "rank", - "description": null, + "name": "source_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeUpdateManyWithoutBlockInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null }, { - "name": "set", - "description": null, + "name": "source_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "disconnect", - "description": null, + "name": "source_contains", + "description": "All values containing the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "updateMany", - "description": null, + "name": "source_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeUpdateManyWithWhereNestedInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, + "name": "source_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeScalarWhereInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", + "name": "source_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeScalarWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", + "name": "source_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeScalarWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + "name": "source_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeScalarWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "id", + "name": "bytecode", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_not", + "name": "bytecode_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_in", + "name": "bytecode_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -179236,7 +22955,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } } @@ -179244,7 +22963,7 @@ "defaultValue": null }, { - "name": "id_not_in", + "name": "bytecode_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -179254,7 +22973,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } } @@ -179262,107 +22981,325 @@ "defaultValue": null }, { - "name": "id_lt", + "name": "bytecode_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_lte", + "name": "bytecode_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_gt", + "name": "bytecode_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_gte", + "name": "bytecode_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_contains", + "name": "bytecode_contains", "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_not_contains", + "name": "bytecode_not_contains", "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_starts_with", + "name": "bytecode_starts_with", "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_not_starts_with", + "name": "bytecode_not_starts_with", "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_ends_with", + "name": "bytecode_ends_with", "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_not_ends_with", + "name": "bytecode_not_ends_with", "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "CreatedBy", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Transaction", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "EthTransactionWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "IncomeTransactions_every", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "EthTransactionWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "IncomeTransactions_some", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "EthTransactionWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "IncomeTransactions_none", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "EthTransactionWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "OutcomeTransactions_every", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "EthTransactionWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "OutcomeTransactions_some", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "EthTransactionWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "OutcomeTransactions_none", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "EthTransactionWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ContractSource", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "EthContractSourceWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "BlocksMined_every", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "EthBlockWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "BlocksMined_some", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "EthBlockWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "BlocksMined_none", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "EthBlockWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "externalKey", + "name": "UserAuthed", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "EthAccountType", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "Account", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Contract", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthTransactionWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": "Logical AND on all given filters.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthTransactionWhereInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "OR", + "description": "Logical OR on all given filters.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthTransactionWhereInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthTransactionWhereInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id", "description": null, "type": { "kind": "SCALAR", @@ -179372,7 +23309,7 @@ "defaultValue": null }, { - "name": "externalKey_not", + "name": "id_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", @@ -179382,7 +23319,7 @@ "defaultValue": null }, { - "name": "externalKey_in", + "name": "id_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -179400,7 +23337,7 @@ "defaultValue": null }, { - "name": "externalKey_not_in", + "name": "id_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -179418,7 +23355,7 @@ "defaultValue": null }, { - "name": "externalKey_lt", + "name": "id_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", @@ -179428,7 +23365,7 @@ "defaultValue": null }, { - "name": "externalKey_lte", + "name": "id_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", @@ -179438,7 +23375,7 @@ "defaultValue": null }, { - "name": "externalKey_gt", + "name": "id_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", @@ -179448,7 +23385,7 @@ "defaultValue": null }, { - "name": "externalKey_gte", + "name": "id_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", @@ -179458,7 +23395,7 @@ "defaultValue": null }, { - "name": "externalKey_contains", + "name": "id_contains", "description": "All values containing the given string.", "type": { "kind": "SCALAR", @@ -179468,7 +23405,7 @@ "defaultValue": null }, { - "name": "externalKey_not_contains", + "name": "id_not_contains", "description": "All values not containing the given string.", "type": { "kind": "SCALAR", @@ -179478,7 +23415,7 @@ "defaultValue": null }, { - "name": "externalKey_starts_with", + "name": "id_starts_with", "description": "All values starting with the given string.", "type": { "kind": "SCALAR", @@ -179488,7 +23425,7 @@ "defaultValue": null }, { - "name": "externalKey_not_starts_with", + "name": "id_not_starts_with", "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", @@ -179498,7 +23435,7 @@ "defaultValue": null }, { - "name": "externalKey_ends_with", + "name": "id_ends_with", "description": "All values ending with the given string.", "type": { "kind": "SCALAR", @@ -179508,7 +23445,7 @@ "defaultValue": null }, { - "name": "externalKey_not_ends_with", + "name": "id_not_ends_with", "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", @@ -179710,27 +23647,27 @@ "defaultValue": null }, { - "name": "name", + "name": "chainId", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "name_not", + "name": "chainId_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "name_in", + "name": "chainId_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -179740,7 +23677,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } } @@ -179748,7 +23685,7 @@ "defaultValue": null }, { - "name": "name_not_in", + "name": "chainId_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -179758,7 +23695,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } } @@ -179766,107 +23703,143 @@ "defaultValue": null }, { - "name": "name_lt", + "name": "chainId_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "name_lte", + "name": "chainId_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "name_gt", + "name": "chainId_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "name_gte", + "name": "chainId_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "name_contains", - "description": "All values containing the given string.", + "name": "amount", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "name_not_contains", - "description": "All values not containing the given string.", + "name": "amount_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "name_starts_with", - "description": "All values starting with the given string.", + "name": "amount_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "amount_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "amount_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", + "name": "amount_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "name_ends_with", - "description": "All values ending with the given string.", + "name": "amount_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", + "name": "amount_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "dashedName", + "name": "input", "description": null, "type": { "kind": "SCALAR", @@ -179876,7 +23849,7 @@ "defaultValue": null }, { - "name": "dashedName_not", + "name": "input_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", @@ -179886,7 +23859,7 @@ "defaultValue": null }, { - "name": "dashedName_in", + "name": "input_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -179904,7 +23877,7 @@ "defaultValue": null }, { - "name": "dashedName_not_in", + "name": "input_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -179922,7 +23895,7 @@ "defaultValue": null }, { - "name": "dashedName_lt", + "name": "input_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", @@ -179932,7 +23905,7 @@ "defaultValue": null }, { - "name": "dashedName_lte", + "name": "input_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", @@ -179942,7 +23915,7 @@ "defaultValue": null }, { - "name": "dashedName_gt", + "name": "input_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", @@ -179952,7 +23925,7 @@ "defaultValue": null }, { - "name": "dashedName_gte", + "name": "input_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", @@ -179962,7 +23935,7 @@ "defaultValue": null }, { - "name": "dashedName_contains", + "name": "input_contains", "description": "All values containing the given string.", "type": { "kind": "SCALAR", @@ -179972,7 +23945,7 @@ "defaultValue": null }, { - "name": "dashedName_not_contains", + "name": "input_not_contains", "description": "All values not containing the given string.", "type": { "kind": "SCALAR", @@ -179982,7 +23955,7 @@ "defaultValue": null }, { - "name": "dashedName_starts_with", + "name": "input_starts_with", "description": "All values starting with the given string.", "type": { "kind": "SCALAR", @@ -179992,7 +23965,7 @@ "defaultValue": null }, { - "name": "dashedName_not_starts_with", + "name": "input_not_starts_with", "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", @@ -180002,7 +23975,7 @@ "defaultValue": null }, { - "name": "dashedName_ends_with", + "name": "input_ends_with", "description": "All values ending with the given string.", "type": { "kind": "SCALAR", @@ -180012,7 +23985,7 @@ "defaultValue": null }, { - "name": "dashedName_not_ends_with", + "name": "input_not_ends_with", "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", @@ -180022,27 +23995,27 @@ "defaultValue": null }, { - "name": "localeTitle", + "name": "index", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "localeTitle_not", + "name": "index_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "localeTitle_in", + "name": "index_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -180052,7 +24025,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } } @@ -180060,7 +24033,7 @@ "defaultValue": null }, { - "name": "localeTitle_not_in", + "name": "index_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -180070,7 +24043,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } } @@ -180078,107 +24051,47 @@ "defaultValue": null }, { - "name": "localeTitle_lt", + "name": "index_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "localeTitle_lte", + "name": "index_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "localeTitle_gt", + "name": "index_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "localeTitle_gte", + "name": "index_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "localeTitle_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "localeTitle_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "localeTitle_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "localeTitle_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "localeTitle_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "localeTitle_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "description", + "name": "address", "description": null, "type": { "kind": "SCALAR", @@ -180188,7 +24101,7 @@ "defaultValue": null }, { - "name": "description_not", + "name": "address_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", @@ -180198,7 +24111,7 @@ "defaultValue": null }, { - "name": "description_in", + "name": "address_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -180216,7 +24129,7 @@ "defaultValue": null }, { - "name": "description_not_in", + "name": "address_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -180234,7 +24147,7 @@ "defaultValue": null }, { - "name": "description_lt", + "name": "address_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", @@ -180244,7 +24157,7 @@ "defaultValue": null }, { - "name": "description_lte", + "name": "address_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", @@ -180254,7 +24167,7 @@ "defaultValue": null }, { - "name": "description_gt", + "name": "address_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", @@ -180264,7 +24177,7 @@ "defaultValue": null }, { - "name": "description_gte", + "name": "address_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", @@ -180274,7 +24187,7 @@ "defaultValue": null }, { - "name": "description_contains", + "name": "address_contains", "description": "All values containing the given string.", "type": { "kind": "SCALAR", @@ -180284,7 +24197,7 @@ "defaultValue": null }, { - "name": "description_not_contains", + "name": "address_not_contains", "description": "All values not containing the given string.", "type": { "kind": "SCALAR", @@ -180294,7 +24207,7 @@ "defaultValue": null }, { - "name": "description_starts_with", + "name": "address_starts_with", "description": "All values starting with the given string.", "type": { "kind": "SCALAR", @@ -180304,7 +24217,7 @@ "defaultValue": null }, { - "name": "description_not_starts_with", + "name": "address_not_starts_with", "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", @@ -180314,7 +24227,7 @@ "defaultValue": null }, { - "name": "description_ends_with", + "name": "address_ends_with", "description": "All values ending with the given string.", "type": { "kind": "SCALAR", @@ -180324,7 +24237,7 @@ "defaultValue": null }, { - "name": "description_not_ends_with", + "name": "address_not_ends_with", "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", @@ -180334,27 +24247,27 @@ "defaultValue": null }, { - "name": "challengeType", + "name": "type", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "EthTransactionType", "ofType": null }, "defaultValue": null }, { - "name": "challengeType_not", + "name": "type_not", "description": "All values that are not equal to given value.", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "EthTransactionType", "ofType": null }, "defaultValue": null }, { - "name": "challengeType_in", + "name": "type_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -180363,8 +24276,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "EthTransactionType", "ofType": null } } @@ -180372,7 +24285,7 @@ "defaultValue": null }, { - "name": "challengeType_not_in", + "name": "type_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -180381,8 +24294,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "EthTransactionType", "ofType": null } } @@ -180390,67 +24303,27 @@ "defaultValue": null }, { - "name": "challengeType_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "challengeType_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "challengeType_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "challengeType_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "forumTopicId", + "name": "v", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "forumTopicId_not", + "name": "v_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "forumTopicId_in", + "name": "v_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -180460,7 +24333,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } } @@ -180468,7 +24341,7 @@ "defaultValue": null }, { - "name": "forumTopicId_not_in", + "name": "v_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -180478,7 +24351,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } } @@ -180486,47 +24359,107 @@ "defaultValue": null }, { - "name": "forumTopicId_lt", + "name": "v_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "forumTopicId_lte", + "name": "v_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "forumTopicId_gt", + "name": "v_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "forumTopicId_gte", + "name": "v_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "v_contains", + "description": "All values containing the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "v_not_contains", + "description": "All values not containing the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "v_starts_with", + "description": "All values starting with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "v_not_starts_with", + "description": "All values not starting with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "instructions", + "name": "v_ends_with", + "description": "All values ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "v_not_ends_with", + "description": "All values not ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "r", "description": null, "type": { "kind": "SCALAR", @@ -180536,7 +24469,7 @@ "defaultValue": null }, { - "name": "instructions_not", + "name": "r_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", @@ -180546,7 +24479,7 @@ "defaultValue": null }, { - "name": "instructions_in", + "name": "r_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -180564,7 +24497,7 @@ "defaultValue": null }, { - "name": "instructions_not_in", + "name": "r_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -180582,7 +24515,7 @@ "defaultValue": null }, { - "name": "instructions_lt", + "name": "r_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", @@ -180592,7 +24525,7 @@ "defaultValue": null }, { - "name": "instructions_lte", + "name": "r_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", @@ -180602,7 +24535,7 @@ "defaultValue": null }, { - "name": "instructions_gt", + "name": "r_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", @@ -180612,7 +24545,7 @@ "defaultValue": null }, { - "name": "instructions_gte", + "name": "r_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", @@ -180622,7 +24555,7 @@ "defaultValue": null }, { - "name": "instructions_contains", + "name": "r_contains", "description": "All values containing the given string.", "type": { "kind": "SCALAR", @@ -180632,7 +24565,7 @@ "defaultValue": null }, { - "name": "instructions_not_contains", + "name": "r_not_contains", "description": "All values not containing the given string.", "type": { "kind": "SCALAR", @@ -180642,7 +24575,7 @@ "defaultValue": null }, { - "name": "instructions_starts_with", + "name": "r_starts_with", "description": "All values starting with the given string.", "type": { "kind": "SCALAR", @@ -180652,7 +24585,7 @@ "defaultValue": null }, { - "name": "instructions_not_starts_with", + "name": "r_not_starts_with", "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", @@ -180662,7 +24595,7 @@ "defaultValue": null }, { - "name": "instructions_ends_with", + "name": "r_ends_with", "description": "All values ending with the given string.", "type": { "kind": "SCALAR", @@ -180672,7 +24605,7 @@ "defaultValue": null }, { - "name": "instructions_not_ends_with", + "name": "r_not_ends_with", "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", @@ -180682,7 +24615,7 @@ "defaultValue": null }, { - "name": "videoUrl", + "name": "s", "description": null, "type": { "kind": "SCALAR", @@ -180692,7 +24625,7 @@ "defaultValue": null }, { - "name": "videoUrl_not", + "name": "s_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", @@ -180702,7 +24635,7 @@ "defaultValue": null }, { - "name": "videoUrl_in", + "name": "s_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -180720,7 +24653,7 @@ "defaultValue": null }, { - "name": "videoUrl_not_in", + "name": "s_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -180738,7 +24671,7 @@ "defaultValue": null }, { - "name": "videoUrl_lt", + "name": "s_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", @@ -180748,7 +24681,7 @@ "defaultValue": null }, { - "name": "videoUrl_lte", + "name": "s_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", @@ -180758,7 +24691,7 @@ "defaultValue": null }, { - "name": "videoUrl_gt", + "name": "s_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", @@ -180768,7 +24701,7 @@ "defaultValue": null }, { - "name": "videoUrl_gte", + "name": "s_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", @@ -180778,7 +24711,7 @@ "defaultValue": null }, { - "name": "videoUrl_contains", + "name": "s_contains", "description": "All values containing the given string.", "type": { "kind": "SCALAR", @@ -180788,7 +24721,7 @@ "defaultValue": null }, { - "name": "videoUrl_not_contains", + "name": "s_not_contains", "description": "All values not containing the given string.", "type": { "kind": "SCALAR", @@ -180798,7 +24731,7 @@ "defaultValue": null }, { - "name": "videoUrl_starts_with", + "name": "s_starts_with", "description": "All values starting with the given string.", "type": { "kind": "SCALAR", @@ -180808,7 +24741,7 @@ "defaultValue": null }, { - "name": "videoUrl_not_starts_with", + "name": "s_not_starts_with", "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", @@ -180818,7 +24751,7 @@ "defaultValue": null }, { - "name": "videoUrl_ends_with", + "name": "s_ends_with", "description": "All values ending with the given string.", "type": { "kind": "SCALAR", @@ -180828,7 +24761,7 @@ "defaultValue": null }, { - "name": "videoUrl_not_ends_with", + "name": "s_not_ends_with", "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", @@ -180838,124 +24771,100 @@ "defaultValue": null }, { - "name": "order", + "name": "Sender", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "EthAccountWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "order_not", - "description": "All values that are not equal to given value.", + "name": "Receiver", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "EthAccountWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "order_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "order_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "order_lt", - "description": "All values less than the given value.", + "name": "Account", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "EthAccountWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "order_lte", - "description": "All values less than or equal the given value.", + "name": "Block", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "EthBlockWhereInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "EthTransactionType", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "order_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "name": "ContractCreate", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "order_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "name": "ContractRead", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "superOrder", + "name": "ContractCall", "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "superOrder_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "name": "SendEth", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "superOrder_in", - "description": "All values that are contained in given list.", + "name": "SendToken", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthBlockWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": "Logical AND on all given filters.", "type": { "kind": "LIST", "name": null, @@ -180963,8 +24872,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "EthBlockWhereInput", "ofType": null } } @@ -180972,8 +24881,8 @@ "defaultValue": null }, { - "name": "superOrder_not_in", - "description": "All values that are not contained in given list.", + "name": "OR", + "description": "Logical OR on all given filters.", "type": { "kind": "LIST", "name": null, @@ -180981,8 +24890,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "EthBlockWhereInput", "ofType": null } } @@ -180990,67 +24899,45 @@ "defaultValue": null }, { - "name": "superOrder_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "superOrder_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "superOrder_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "superOrder_gte", - "description": "All values greater than or equal the given value.", + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthBlockWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "challengeOrder", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "challengeOrder_not", + "name": "id_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "challengeOrder_in", + "name": "id_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -181060,7 +24947,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null } } @@ -181068,7 +24955,7 @@ "defaultValue": null }, { - "name": "challengeOrder_not_in", + "name": "id_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -181078,7 +24965,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null } } @@ -181086,127 +24973,127 @@ "defaultValue": null }, { - "name": "challengeOrder_lt", + "name": "id_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "challengeOrder_lte", + "name": "id_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "challengeOrder_gt", + "name": "id_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "challengeOrder_gte", + "name": "id_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "isRequired", - "description": null, + "name": "id_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "isRequired_not", - "description": "All values that are not equal to given value.", + "name": "id_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "isPrivate", - "description": null, + "name": "id_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "isPrivate_not", - "description": "All values that are not equal to given value.", + "name": "id_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "isBeta", - "description": null, + "name": "id_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "isBeta_not", - "description": "All values that are not equal to given value.", + "name": "id_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "template", + "name": "createdAt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "template_not", + "name": "createdAt_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "template_in", + "name": "createdAt_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -181216,7 +25103,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null } } @@ -181224,7 +25111,7 @@ "defaultValue": null }, { - "name": "template_not_in", + "name": "createdAt_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -181234,7 +25121,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null } } @@ -181242,107 +25129,143 @@ "defaultValue": null }, { - "name": "template_lt", + "name": "createdAt_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "template_lte", + "name": "createdAt_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "template_gt", + "name": "createdAt_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "template_gte", + "name": "createdAt_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "template_contains", - "description": "All values containing the given string.", + "name": "updatedAt", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "template_not_contains", - "description": "All values not containing the given string.", + "name": "updatedAt_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "template_starts_with", - "description": "All values starting with the given string.", + "name": "updatedAt_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "updatedAt_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "updatedAt_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "template_not_starts_with", - "description": "All values not starting with the given string.", + "name": "updatedAt_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "template_ends_with", - "description": "All values ending with the given string.", + "name": "updatedAt_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "template_not_ends_with", - "description": "All values not ending with the given string.", + "name": "updatedAt_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "time", + "name": "hash", "description": null, "type": { "kind": "SCALAR", @@ -181352,7 +25275,7 @@ "defaultValue": null }, { - "name": "time_not", + "name": "hash_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", @@ -181362,7 +25285,7 @@ "defaultValue": null }, { - "name": "time_in", + "name": "hash_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -181380,7 +25303,7 @@ "defaultValue": null }, { - "name": "time_not_in", + "name": "hash_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -181398,7 +25321,7 @@ "defaultValue": null }, { - "name": "time_lt", + "name": "hash_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", @@ -181408,7 +25331,7 @@ "defaultValue": null }, { - "name": "time_lte", + "name": "hash_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", @@ -181418,7 +25341,7 @@ "defaultValue": null }, { - "name": "time_gt", + "name": "hash_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", @@ -181428,7 +25351,7 @@ "defaultValue": null }, { - "name": "time_gte", + "name": "hash_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", @@ -181438,7 +25361,7 @@ "defaultValue": null }, { - "name": "time_contains", + "name": "hash_contains", "description": "All values containing the given string.", "type": { "kind": "SCALAR", @@ -181448,7 +25371,7 @@ "defaultValue": null }, { - "name": "time_not_contains", + "name": "hash_not_contains", "description": "All values not containing the given string.", "type": { "kind": "SCALAR", @@ -181458,7 +25381,7 @@ "defaultValue": null }, { - "name": "time_starts_with", + "name": "hash_starts_with", "description": "All values starting with the given string.", "type": { "kind": "SCALAR", @@ -181468,7 +25391,7 @@ "defaultValue": null }, { - "name": "time_not_starts_with", + "name": "hash_not_starts_with", "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", @@ -181478,7 +25401,7 @@ "defaultValue": null }, { - "name": "time_ends_with", + "name": "hash_ends_with", "description": "All values ending with the given string.", "type": { "kind": "SCALAR", @@ -181488,7 +25411,7 @@ "defaultValue": null }, { - "name": "time_not_ends_with", + "name": "hash_not_ends_with", "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", @@ -181498,7 +25421,7 @@ "defaultValue": null }, { - "name": "rank", + "name": "number", "description": null, "type": { "kind": "SCALAR", @@ -181508,7 +25431,7 @@ "defaultValue": null }, { - "name": "rank_not", + "name": "number_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", @@ -181518,7 +25441,7 @@ "defaultValue": null }, { - "name": "rank_in", + "name": "number_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -181536,7 +25459,7 @@ "defaultValue": null }, { - "name": "rank_not_in", + "name": "number_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -181554,7 +25477,7 @@ "defaultValue": null }, { - "name": "rank_lt", + "name": "number_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", @@ -181564,7 +25487,7 @@ "defaultValue": null }, { - "name": "rank_lte", + "name": "number_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", @@ -181574,7 +25497,7 @@ "defaultValue": null }, { - "name": "rank_gt", + "name": "number_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", @@ -181584,7 +25507,7 @@ "defaultValue": null }, { - "name": "rank_gte", + "name": "number_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", @@ -181592,220 +25515,201 @@ "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "externalKey", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dashedName", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "localeTitle", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null }, { - "name": "description", + "name": "difficulty", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "challengeType", - "description": null, + "name": "difficulty_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "forumTopicId", - "description": null, + "name": "difficulty_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "translations", - "description": null, + "name": "difficulty_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "tests", - "description": null, + "name": "difficulty_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "solutions", - "description": null, + "name": "difficulty_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "instructions", - "description": null, + "name": "difficulty_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "files", - "description": null, + "name": "difficulty_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "videoUrl", + "name": "totalDifficulty", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "order", - "description": null, + "name": "totalDifficulty_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "superOrder", - "description": null, + "name": "totalDifficulty_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "challengeOrder", - "description": null, + "name": "totalDifficulty_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "required", - "description": null, + "name": "totalDifficulty_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "isRequired", - "description": null, + "name": "totalDifficulty_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "isPrivate", - "description": null, + "name": "totalDifficulty_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "isBeta", - "description": null, + "name": "totalDifficulty_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "template", + "name": "extraData", "description": null, "type": { "kind": "SCALAR", @@ -181815,8 +25719,8 @@ "defaultValue": null }, { - "name": "time", - "description": null, + "name": "extraData_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", "name": "String", @@ -181825,39 +25729,44 @@ "defaultValue": null }, { - "name": "rank", - "description": null, + "name": "extraData_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "externalKey", - "description": null, + "name": "extraData_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "name", - "description": null, + "name": "extraData_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -181866,50 +25775,18 @@ "defaultValue": null }, { - "name": "rank", - "description": null, + "name": "extraData_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockUpdateOneRequiredWithoutChallengesInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockWhereUniqueInput", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockUpdateWithoutChallengesDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "externalKey", - "description": null, + "name": "extraData_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -181918,8 +25795,8 @@ "defaultValue": null }, { - "name": "name", - "description": null, + "name": "extraData_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -181928,59 +25805,48 @@ "defaultValue": null }, { - "name": "rank", - "description": null, + "name": "extraData_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Parent", - "description": null, + "name": "extraData_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockUpdateOneWithoutChildrenInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Children", - "description": null, + "name": "extraData_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockUpdateManyWithoutParentInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "extraData_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockUpdateWithoutChildrenDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "externalKey", - "description": null, + "name": "extraData_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -181989,8 +25855,8 @@ "defaultValue": null }, { - "name": "name", - "description": null, + "name": "extraData_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -181999,194 +25865,124 @@ "defaultValue": null }, { - "name": "rank", + "name": "gasLimit", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Parent", - "description": null, + "name": "gasLimit_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockUpdateOneWithoutChildrenInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "gasLimit_in", + "description": "All values that are contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Challenges", - "description": null, + "name": "gasLimit_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeUpdateManyWithoutBlockInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockUpdateWithoutParentDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "externalKey", - "description": null, + "name": "gasLimit_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "name", - "description": null, + "name": "gasLimit_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "rank", - "description": null, + "name": "gasLimit_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Children", - "description": null, + "name": "gasLimit_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockUpdateManyWithoutParentInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "gasUsed", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Challenges", - "description": null, + "name": "gasUsed_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeUpdateManyWithoutBlockInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockUpdateWithWhereUniqueWithoutParentInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null }, { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockUpdateWithoutParentDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockUpsertWithWhereUniqueWithoutParentInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCodeChallengeInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, + "name": "gasUsed_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -182194,28 +25990,17 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionWhereUniqueInput", + "kind": "SCALAR", + "name": "Float", "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "gasUsed_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -182223,144 +26008,56 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionWhereUniqueInput", + "kind": "SCALAR", + "name": "Float", "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateWithoutCodeChallengeInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null }, { - "name": "content", - "description": null, + "name": "gasUsed_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "success", - "description": null, + "name": "gasUsed_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "gasUsed_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCodeChallengeCompletionsInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Task", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateOneWithoutCodeChallengeCompletionInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCodeChallengeCompletionsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskCreateOneWithoutCodeChallengeCompletionInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, + "name": "gasUsed_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "content", + "name": "mixHash", "description": null, "type": { "kind": "SCALAR", @@ -182370,67 +26067,64 @@ "defaultValue": null }, { - "name": "success", - "description": null, + "name": "mixHash_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallenge", - "description": null, + "name": "mixHash_in", + "description": "All values that are contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCreateOneWithoutCompletionsInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null }, { - "name": "Task", - "description": null, + "name": "mixHash_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateOneWithoutCodeChallengeCompletionInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateWithoutTaskInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "mixHash_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "content", - "description": null, + "name": "mixHash_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -182439,209 +26133,107 @@ "defaultValue": null }, { - "name": "success", - "description": null, + "name": "mixHash_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "mixHash_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCodeChallengeCompletionsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallenge", - "description": null, + "name": "mixHash_contains", + "description": "All values containing the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCreateOneWithoutCompletionsInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CodeChallengeCompletionPreviousValues", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "updatedAt", - "description": null, - "args": [], + "name": "mixHash_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "content", - "description": null, - "args": [], + "name": "mixHash_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "success", - "description": null, - "args": [], + "name": "mixHash_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionScalarWhereInput", - "ofType": null - } - } - }, "defaultValue": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", + "name": "mixHash_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionScalarWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + "name": "mixHash_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionScalarWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "id", + "name": "nonce", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_not", + "name": "nonce_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_in", + "name": "nonce_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -182651,7 +26243,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } } @@ -182659,7 +26251,7 @@ "defaultValue": null }, { - "name": "id_not_in", + "name": "nonce_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -182669,7 +26261,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } } @@ -182677,127 +26269,127 @@ "defaultValue": null }, { - "name": "id_lt", + "name": "nonce_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_lte", + "name": "nonce_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_gt", + "name": "nonce_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_gte", + "name": "nonce_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_contains", + "name": "nonce_contains", "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_not_contains", + "name": "nonce_not_contains", "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_starts_with", + "name": "nonce_starts_with", "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_not_starts_with", + "name": "nonce_not_starts_with", "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_ends_with", + "name": "nonce_ends_with", "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_not_ends_with", + "name": "nonce_not_ends_with", "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "createdAt", + "name": "parentHash", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_not", + "name": "parentHash_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_in", + "name": "parentHash_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -182807,7 +26399,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null } } @@ -182815,7 +26407,7 @@ "defaultValue": null }, { - "name": "createdAt_not_in", + "name": "parentHash_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -182825,7 +26417,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null } } @@ -182833,143 +26425,107 @@ "defaultValue": null }, { - "name": "createdAt_lt", + "name": "parentHash_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_lte", + "name": "parentHash_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_gt", + "name": "parentHash_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_gte", + "name": "parentHash_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt", - "description": null, + "name": "parentHash_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", + "name": "parentHash_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", + "name": "parentHash_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", + "name": "parentHash_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", + "name": "parentHash_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", + "name": "parentHash_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "content", + "name": "receiptsRoot", "description": null, "type": { "kind": "SCALAR", @@ -182979,7 +26535,7 @@ "defaultValue": null }, { - "name": "content_not", + "name": "receiptsRoot_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", @@ -182989,7 +26545,7 @@ "defaultValue": null }, { - "name": "content_in", + "name": "receiptsRoot_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -183007,7 +26563,7 @@ "defaultValue": null }, { - "name": "content_not_in", + "name": "receiptsRoot_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -183025,7 +26581,7 @@ "defaultValue": null }, { - "name": "content_lt", + "name": "receiptsRoot_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", @@ -183035,7 +26591,7 @@ "defaultValue": null }, { - "name": "content_lte", + "name": "receiptsRoot_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", @@ -183045,7 +26601,7 @@ "defaultValue": null }, { - "name": "content_gt", + "name": "receiptsRoot_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", @@ -183055,7 +26611,7 @@ "defaultValue": null }, { - "name": "content_gte", + "name": "receiptsRoot_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", @@ -183065,7 +26621,7 @@ "defaultValue": null }, { - "name": "content_contains", + "name": "receiptsRoot_contains", "description": "All values containing the given string.", "type": { "kind": "SCALAR", @@ -183075,7 +26631,7 @@ "defaultValue": null }, { - "name": "content_not_contains", + "name": "receiptsRoot_not_contains", "description": "All values not containing the given string.", "type": { "kind": "SCALAR", @@ -183085,7 +26641,7 @@ "defaultValue": null }, { - "name": "content_starts_with", + "name": "receiptsRoot_starts_with", "description": "All values starting with the given string.", "type": { "kind": "SCALAR", @@ -183095,7 +26651,7 @@ "defaultValue": null }, { - "name": "content_not_starts_with", + "name": "receiptsRoot_not_starts_with", "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", @@ -183105,7 +26661,7 @@ "defaultValue": null }, { - "name": "content_ends_with", + "name": "receiptsRoot_ends_with", "description": "All values ending with the given string.", "type": { "kind": "SCALAR", @@ -183115,7 +26671,7 @@ "defaultValue": null }, { - "name": "content_not_ends_with", + "name": "receiptsRoot_not_ends_with", "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", @@ -183125,67 +26681,28 @@ "defaultValue": null }, { - "name": "success", + "name": "sha3Uncles", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "success_not", + "name": "sha3Uncles_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CodeChallengeCompletionSubscriptionPayload", - "description": null, - "fields": [ - { - "name": "mutation", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "CodeChallengeCompletion", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "updatedFields", - "description": null, - "args": [], + "name": "sha3Uncles_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -183199,54 +26716,11 @@ } } }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "previousValues", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "CodeChallengeCompletionPreviousValues", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionSubscriptionWhereInput", - "ofType": null - } - } - }, "defaultValue": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", + "name": "sha3Uncles_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -183254,8 +26728,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionSubscriptionWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -183263,44 +26737,28 @@ "defaultValue": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + "name": "sha3Uncles_lt", + "description": "All values less than the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionSubscriptionWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", + "name": "sha3Uncles_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", + "name": "sha3Uncles_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -183309,65 +26767,38 @@ "defaultValue": null }, { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", + "name": "sha3Uncles_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", + "name": "sha3Uncles_contains", + "description": "All values containing the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "node", - "description": null, + "name": "sha3Uncles_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "content", - "description": null, + "name": "sha3Uncles_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -183376,29 +26807,18 @@ "defaultValue": null }, { - "name": "success", - "description": null, + "name": "sha3Uncles_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "content", - "description": null, + "name": "sha3Uncles_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -183407,65 +26827,38 @@ "defaultValue": null }, { - "name": "success", - "description": null, + "name": "sha3Uncles_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCodeChallengeInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "size", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "set", - "description": null, + "name": "size_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "disconnect", - "description": null, + "name": "size_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -183473,8 +26866,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionWhereUniqueInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } } @@ -183482,8 +26875,8 @@ "defaultValue": null }, { - "name": "updateMany", - "description": null, + "name": "size_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -183491,8 +26884,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithWhereNestedInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } } @@ -183500,130 +26893,68 @@ "defaultValue": null }, { - "name": "deleteMany", - "description": null, + "name": "size_lt", + "description": "All values less than the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionScalarWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", - "description": null, + "name": "size_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionScalarWhereInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "data", - "description": null, + "name": "size_gt", + "description": "All values greater than the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyDataInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "size_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "set", + "name": "stateRoot", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "disconnect", - "description": null, + "name": "stateRoot_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "updateMany", - "description": null, + "name": "stateRoot_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -183631,8 +26962,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithWhereNestedInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -183640,8 +26971,8 @@ "defaultValue": null }, { - "name": "deleteMany", - "description": null, + "name": "stateRoot_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -183649,28 +26980,17 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionScalarWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateWithoutCodeChallengeDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "content", - "description": null, + "name": "stateRoot_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -183679,101 +26999,48 @@ "defaultValue": null }, { - "name": "success", - "description": null, + "name": "stateRoot_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "stateRoot_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutCodeChallengeCompletionsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Task", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateOneRequiredWithoutCodeChallengeCompletionInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutCodeChallengeCompletionsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, + "name": "stateRoot_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "disconnect", - "description": null, + "name": "stateRoot_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateOneRequiredWithoutCodeChallengeCompletionInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereUniqueInput", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateWithoutCreatedByDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "content", - "description": null, + "name": "stateRoot_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -183782,70 +27049,28 @@ "defaultValue": null }, { - "name": "success", - "description": null, + "name": "stateRoot_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallenge", - "description": null, + "name": "stateRoot_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeUpdateOneRequiredWithoutCompletionsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Task", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateOneRequiredWithoutCodeChallengeCompletionInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeUpdateOneRequiredWithoutCompletionsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateWithoutTaskDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "content", - "description": null, + "name": "stateRoot_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -183854,217 +27079,170 @@ "defaultValue": null }, { - "name": "success", - "description": null, + "name": "stateRoot_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutCodeChallengeCompletionsInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallenge", - "description": null, + "name": "date_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeUpdateOneRequiredWithoutCompletionsInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateWithWhereUniqueWithoutCodeChallengeInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", - "description": null, + "name": "date_in", + "description": "All values that are contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } } }, "defaultValue": null }, { - "name": "data", - "description": null, + "name": "date_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateWithoutCodeChallengeDataInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateWithWhereUniqueWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", - "description": null, + "name": "date_lt", + "description": "All values less than the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, "defaultValue": null }, { - "name": "data", - "description": null, + "name": "date_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateWithoutCreatedByDataInput", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpsertWithWhereUniqueWithoutCodeChallengeInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", - "description": null, + "name": "date_gt", + "description": "All values greater than the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpsertWithWhereUniqueWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", - "description": null, + "name": "date_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCreateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "transactionsRoot", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "externalKey", - "description": null, + "name": "transactionsRoot_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "name", - "description": null, + "name": "transactionsRoot_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "dashedName", - "description": null, + "name": "transactionsRoot_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "localeTitle", - "description": null, + "name": "transactionsRoot_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -184073,8 +27251,8 @@ "defaultValue": null }, { - "name": "description", - "description": null, + "name": "transactionsRoot_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -184083,58 +27261,58 @@ "defaultValue": null }, { - "name": "challengeType", - "description": null, + "name": "transactionsRoot_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "forumTopicId", - "description": null, + "name": "transactionsRoot_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "translations", - "description": null, + "name": "transactionsRoot_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "tests", - "description": null, + "name": "transactionsRoot_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "solutions", - "description": null, + "name": "transactionsRoot_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "instructions", - "description": null, + "name": "transactionsRoot_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -184143,18 +27321,18 @@ "defaultValue": null }, { - "name": "files", - "description": null, + "name": "transactionsRoot_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "videoUrl", - "description": null, + "name": "transactionsRoot_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -184163,7 +27341,7 @@ "defaultValue": null }, { - "name": "order", + "name": "transactions_count", "description": null, "type": { "kind": "SCALAR", @@ -184173,8 +27351,8 @@ "defaultValue": null }, { - "name": "superOrder", - "description": null, + "name": "transactions_count_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", "name": "Int", @@ -184183,146 +27361,147 @@ "defaultValue": null }, { - "name": "challengeOrder", - "description": null, + "name": "transactions_count_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "required", - "description": null, + "name": "transactions_count_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "isRequired", - "description": null, + "name": "transactions_count_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "isPrivate", - "description": null, + "name": "transactions_count_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "isBeta", - "description": null, + "name": "transactions_count_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "template", - "description": null, + "name": "transactions_count_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "time", + "name": "Miner", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "EthAccountWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "rank", + "name": "Transactions_every", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "EthTransactionWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "Transactions_some", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "name": "EthTransactionWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "Block", + "name": "Transactions_none", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockCreateOneWithoutChallengesInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "EthTransactionWhereInput", + "ofType": null }, "defaultValue": null }, { - "name": "Completions", + "name": "Uncles_every", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCodeChallengeInput", + "name": "EthBlockWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "Topic", + "name": "Uncles_some", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutCodeChallengeInput", + "name": "EthBlockWhereInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutCodeChallengeInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "Uncles_none", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", + "name": "EthBlockWhereInput", "ofType": null }, "defaultValue": null @@ -184334,424 +27513,481 @@ }, { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCreateWithoutBlockInput", + "name": "ChatRoomWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "externalKey", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "name", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "dashedName", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "localeTitle", - "description": null, + "name": "id_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "id_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "challengeType", - "description": null, + "name": "id_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "forumTopicId", - "description": null, + "name": "id_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "translations", - "description": null, + "name": "id_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "tests", - "description": null, + "name": "id_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "solutions", - "description": null, + "name": "id_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "instructions", - "description": null, + "name": "id_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "files", - "description": null, + "name": "id_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "videoUrl", - "description": null, + "name": "id_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "order", - "description": null, + "name": "id_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "superOrder", - "description": null, + "name": "id_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "challengeOrder", - "description": null, + "name": "id_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "required", + "name": "createdAt", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "isRequired", - "description": null, + "name": "createdAt_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "isPrivate", - "description": null, + "name": "createdAt_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "isBeta", - "description": null, + "name": "createdAt_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "template", - "description": null, + "name": "createdAt_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "time", - "description": null, + "name": "createdAt_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "rank", - "description": null, + "name": "createdAt_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Completions", - "description": null, + "name": "createdAt_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCodeChallengeInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Topic", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutCodeChallengeInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCreateWithoutCompletionsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", + "name": "updatedAt", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "externalKey", - "description": null, + "name": "updatedAt_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "name", - "description": null, + "name": "updatedAt_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "dashedName", - "description": null, + "name": "updatedAt_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "localeTitle", - "description": null, + "name": "updatedAt_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "updatedAt_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "challengeType", - "description": null, + "name": "updatedAt_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "forumTopicId", - "description": null, + "name": "updatedAt_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "translations", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "tests", - "description": null, + "name": "name_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "solutions", - "description": null, + "name": "name_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "instructions", - "description": null, + "name": "name_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "files", - "description": null, + "name": "name_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "videoUrl", - "description": null, + "name": "name_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -184760,78 +27996,78 @@ "defaultValue": null }, { - "name": "order", - "description": null, + "name": "name_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "superOrder", - "description": null, + "name": "name_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "challengeOrder", - "description": null, + "name": "name_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "required", - "description": null, + "name": "name_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "isRequired", - "description": null, + "name": "name_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "isPrivate", - "description": null, + "name": "name_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "isBeta", - "description": null, + "name": "name_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "template", - "description": null, + "name": "name_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -184840,7 +28076,7 @@ "defaultValue": null }, { - "name": "time", + "name": "description", "description": null, "type": { "kind": "SCALAR", @@ -184850,83 +28086,84 @@ "defaultValue": null }, { - "name": "rank", - "description": null, + "name": "description_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "description_in", + "description": "All values that are contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Block", - "description": null, + "name": "description_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockCreateOneWithoutChallengesInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null }, { - "name": "Topic", - "description": null, + "name": "description_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutCodeChallengeInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCreateWithoutTopicInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "description_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "externalKey", - "description": null, + "name": "description_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "name", - "description": null, + "name": "description_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -184935,8 +28172,8 @@ "defaultValue": null }, { - "name": "dashedName", - "description": null, + "name": "description_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -184945,8 +28182,8 @@ "defaultValue": null }, { - "name": "localeTitle", - "description": null, + "name": "description_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -184955,8 +28192,8 @@ "defaultValue": null }, { - "name": "description", - "description": null, + "name": "description_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -184965,78 +28202,94 @@ "defaultValue": null }, { - "name": "challengeType", - "description": null, + "name": "description_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "forumTopicId", - "description": null, + "name": "description_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "translations", - "description": null, + "name": "description_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "tests", + "name": "image", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "solutions", - "description": null, + "name": "image_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "instructions", - "description": null, + "name": "image_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "files", - "description": null, + "name": "image_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "videoUrl", - "description": null, + "name": "image_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -185045,78 +28298,78 @@ "defaultValue": null }, { - "name": "order", - "description": null, + "name": "image_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "superOrder", - "description": null, + "name": "image_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "challengeOrder", - "description": null, + "name": "image_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "required", - "description": null, + "name": "image_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "isRequired", - "description": null, + "name": "image_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "isPrivate", - "description": null, + "name": "image_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "isBeta", - "description": null, + "name": "image_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "template", - "description": null, + "name": "image_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -185125,8 +28378,8 @@ "defaultValue": null }, { - "name": "time", - "description": null, + "name": "image_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -185135,326 +28388,307 @@ "defaultValue": null }, { - "name": "rank", + "name": "code", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "code_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Block", - "description": null, + "name": "code_in", + "description": "All values that are contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockCreateOneWithoutChallengesInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } } }, "defaultValue": null }, { - "name": "Completions", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCodeChallengeInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "externalKey", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, + "name": "code_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "dashedName", - "description": null, + "name": "code_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "localeTitle", - "description": null, + "name": "code_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "code_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "challengeType", - "description": null, + "name": "code_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "forumTopicId", - "description": null, + "name": "code_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "translations", - "description": null, + "name": "code_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "tests", - "description": null, + "name": "code_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "solutions", - "description": null, + "name": "code_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "instructions", - "description": null, + "name": "code_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "files", - "description": null, + "name": "code_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "videoUrl", + "name": "isPublic", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "order", - "description": null, + "name": "isPublic_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "superOrder", + "name": "Members_every", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "challengeOrder", + "name": "Members_some", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "required", + "name": "Members_none", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "isRequired", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "isPrivate", + "name": "Messages_every", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "ChatMessageWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "isBeta", + "name": "Messages_some", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "ChatMessageWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "template", + "name": "Messages_none", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ChatMessageWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "time", + "name": "Invitations_every", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ChatRoomInvitationWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "rank", + "name": "Invitations_some", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "ChatRoomInvitationWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "Invitations_none", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "name": "ChatRoomInvitationWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "Block", + "name": "CallRequests_every", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockUpdateOneRequiredWithoutChallengesInput", + "name": "CallRequestWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "Completions", + "name": "CallRequests_some", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCodeChallengeInput", + "name": "CallRequestWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "Topic", + "name": "CallRequests_none", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutCodeChallengeInput", + "name": "CallRequestWhereInput", "ofType": null }, "defaultValue": null @@ -185466,43 +28700,66 @@ }, { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutCodeChallengeInput", + "name": "ChatMessageWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "connect", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "disconnect", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageWhereInput", + "ofType": null + } + } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ + }, + { + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageWhereInput", + "ofType": null + } + } + }, + "defaultValue": null + }, { - "name": "externalKey", + "name": "id", "description": null, "type": { "kind": "SCALAR", @@ -185512,359 +28769,412 @@ "defaultValue": null }, { - "name": "name", - "description": null, + "name": "id_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "dashedName", - "description": null, + "name": "id_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "localeTitle", - "description": null, + "name": "id_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "id_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "challengeType", - "description": null, + "name": "id_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "forumTopicId", - "description": null, + "name": "id_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "translations", - "description": null, + "name": "id_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "tests", - "description": null, + "name": "id_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "solutions", - "description": null, + "name": "id_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "instructions", - "description": null, + "name": "id_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "files", - "description": null, + "name": "id_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "videoUrl", - "description": null, + "name": "id_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "order", - "description": null, + "name": "id_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "superOrder", + "name": "createdAt", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "challengeOrder", - "description": null, + "name": "createdAt_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "required", - "description": null, + "name": "createdAt_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "isRequired", - "description": null, + "name": "createdAt_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "isPrivate", - "description": null, + "name": "createdAt_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "isBeta", - "description": null, + "name": "createdAt_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "template", - "description": null, + "name": "createdAt_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "time", - "description": null, + "name": "createdAt_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "rank", + "name": "updatedAt", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeUpdateWithoutBlockDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "externalKey", - "description": null, + "name": "updatedAt_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "name", - "description": null, + "name": "updatedAt_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "dashedName", - "description": null, + "name": "updatedAt_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "localeTitle", - "description": null, + "name": "updatedAt_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "updatedAt_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "challengeType", - "description": null, + "name": "updatedAt_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "forumTopicId", - "description": null, + "name": "updatedAt_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "translations", + "name": "contentText", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "tests", - "description": null, + "name": "contentText_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "solutions", - "description": null, + "name": "contentText_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "instructions", - "description": null, + "name": "contentText_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "files", - "description": null, + "name": "contentText_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "videoUrl", - "description": null, + "name": "contentText_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -185873,78 +29183,78 @@ "defaultValue": null }, { - "name": "order", - "description": null, + "name": "contentText_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "superOrder", - "description": null, + "name": "contentText_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "challengeOrder", - "description": null, + "name": "contentText_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "required", - "description": null, + "name": "contentText_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "isRequired", - "description": null, + "name": "contentText_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "isPrivate", - "description": null, + "name": "contentText_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "isBeta", - "description": null, + "name": "contentText_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "template", - "description": null, + "name": "contentText_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -185953,51 +29263,51 @@ "defaultValue": null }, { - "name": "time", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "rank", + "name": "Room", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "ChatRoomWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "ReadedBy_every", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "name": "ChatMessageReadedWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "Completions", + "name": "ReadedBy_some", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCodeChallengeInput", + "name": "ChatMessageReadedWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "Topic", + "name": "ReadedBy_none", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutCodeChallengeInput", + "name": "ChatMessageReadedWhereInput", "ofType": null }, "defaultValue": null @@ -186009,266 +29319,332 @@ }, { "kind": "INPUT_OBJECT", - "name": "CodeChallengeUpdateWithoutCompletionsDataInput", + "name": "ChatMessageReadedWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "externalKey", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "name", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "dashedName", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "localeTitle", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "id_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "challengeType", - "description": null, + "name": "id_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "forumTopicId", - "description": null, + "name": "id_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "translations", - "description": null, + "name": "id_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "tests", - "description": null, + "name": "id_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "solutions", - "description": null, + "name": "id_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "instructions", - "description": null, + "name": "id_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "files", - "description": null, + "name": "id_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "videoUrl", - "description": null, + "name": "id_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "order", - "description": null, + "name": "id_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "superOrder", - "description": null, + "name": "id_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "challengeOrder", - "description": null, + "name": "id_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "required", + "name": "createdAt", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "isRequired", - "description": null, + "name": "createdAt_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "isPrivate", - "description": null, + "name": "createdAt_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "isBeta", - "description": null, + "name": "createdAt_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "template", - "description": null, + "name": "createdAt_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "time", - "description": null, + "name": "createdAt_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "rank", - "description": null, + "name": "createdAt_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "createdAt_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Block", + "name": "Message", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockUpdateOneRequiredWithoutChallengesInput", + "name": "ChatMessageWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "Topic", + "name": "User", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutCodeChallengeInput", + "name": "UserWhereInput", "ofType": null }, "defaultValue": null @@ -186280,453 +29656,448 @@ }, { "kind": "INPUT_OBJECT", - "name": "CodeChallengeUpdateWithoutTopicDataInput", + "name": "ChatRoomInvitationWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "externalKey", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomInvitationWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "name", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomInvitationWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "dashedName", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomInvitationWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "localeTitle", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "id_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "challengeType", - "description": null, + "name": "id_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "forumTopicId", - "description": null, + "name": "id_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "translations", - "description": null, + "name": "id_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "tests", - "description": null, + "name": "id_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "solutions", - "description": null, + "name": "id_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "instructions", - "description": null, + "name": "id_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "files", - "description": null, + "name": "id_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "videoUrl", - "description": null, + "name": "id_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "order", - "description": null, + "name": "id_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "superOrder", - "description": null, + "name": "id_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "challengeOrder", - "description": null, + "name": "id_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "required", - "description": null, + "name": "id_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "isRequired", + "name": "createdAt", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "isPrivate", - "description": null, + "name": "createdAt_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "isBeta", - "description": null, + "name": "createdAt_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "template", - "description": null, + "name": "createdAt_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "time", - "description": null, + "name": "createdAt_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "rank", - "description": null, + "name": "createdAt_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "createdAt_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Block", - "description": null, + "name": "createdAt_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeBlockUpdateOneRequiredWithoutChallengesInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Completions", + "name": "updatedAt", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCodeChallengeInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeUpdateWithWhereUniqueWithoutBlockInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", - "description": null, + "name": "updatedAt_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, "defaultValue": null }, { - "name": "data", - "description": null, + "name": "updatedAt_in", + "description": "All values that are contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeUpdateWithoutBlockDataInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeUpsertWithWhereUniqueWithoutBlockInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", - "description": null, + "name": "updatedAt_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CommentCreateWithoutTechnologyLessonInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "updatedAt_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "components", - "description": null, + "name": "updatedAt_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "contentText", - "description": null, + "name": "updatedAt_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CommentUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "components", - "description": null, + "name": "updatedAt_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "contentText", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CommentUpdateWithoutTechnologyLessonDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "components", + "name": "User", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "contentText", + "name": "ChatRoom", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ChatRoomWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "Notice", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "name": "NoticeWhereInput", "ofType": null }, "defaultValue": null @@ -186738,77 +30109,87 @@ }, { "kind": "INPUT_OBJECT", - "name": "CommentUpdateWithWhereUniqueWithoutTechnologyLessonInput", + "name": "NoticeWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "where", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CommentWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NoticeWhereInput", + "ofType": null + } } }, "defaultValue": null }, { - "name": "data", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CommentUpdateWithoutTechnologyLessonDataInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NoticeWhereInput", + "ofType": null + } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CommentUpsertWithWhereUniqueWithoutTechnologyLessonInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CommentWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NoticeWhereInput", + "ofType": null + } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutContractSourceInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "id", "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -186816,28 +30197,17 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereUniqueInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "id_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -186845,133 +30215,67 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereUniqueInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutBlocksMinedInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "id_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereUniqueInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutIncomeTransactionsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "id_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereUniqueInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutOutcomeTransactionsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "id_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereUniqueInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutTransactionInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "id_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereUniqueInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutUserAuthedInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "id_contains", + "description": "All values containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereUniqueInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateWithoutBlocksMinedInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "id_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", "name": "ID", @@ -186980,176 +30284,233 @@ "defaultValue": null }, { - "name": "name", - "description": null, + "name": "id_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "id_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "address", - "description": null, + "name": "id_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "type", - "description": null, + "name": "id_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "ENUM", - "name": "EthAccountType", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "source", + "name": "createdAt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "bytecode", - "description": null, + "name": "createdAt_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "abi", - "description": null, + "name": "createdAt_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "createdAt_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "createdAt_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "createdAt_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutEthAccountsInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Transaction", - "description": null, + "name": "createdAt_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionCreateOneWithoutAccountInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "IncomeTransactions", - "description": null, + "name": "createdAt_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionCreateManyWithoutReceiverInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "OutcomeTransactions", + "name": "type", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionCreateManyWithoutSenderInput", + "kind": "ENUM", + "name": "NoticeType", "ofType": null }, "defaultValue": null }, { - "name": "ContractSource", - "description": null, + "name": "type_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateOneWithoutAccountsInput", + "kind": "ENUM", + "name": "NoticeType", "ofType": null }, "defaultValue": null }, { - "name": "UserAuthed", + "name": "type_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "NoticeType", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "type_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "NoticeType", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "User", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutEthAccountAuthedInput", + "name": "UserWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "Project", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutEthAccountsInput", + "name": "UserWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "ChatMessage", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutEthAccountInput", + "name": "ChatMessageWhereInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutEthAccountsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "ChatRoomInvitation", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", + "name": "ChatRoomInvitationWhereInput", "ofType": null }, "defaultValue": null @@ -187160,35 +30521,49 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "EthTransactionCreateOneWithoutAccountInput", + "kind": "ENUM", + "name": "NoticeType", "description": null, "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "connect", + "name": "ChatMessage", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereUniqueInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Call", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CallRequest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ChatRoomInvitation", + "description": null, + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "EthTransactionCreateManyWithoutReceiverInput", + "name": "CallRequestWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "connect", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { "kind": "LIST", "name": null, @@ -187197,27 +30572,16 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereUniqueInput", + "name": "CallRequestWhereInput", "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthTransactionCreateManyWithoutSenderInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { "kind": "LIST", "name": null, @@ -187226,69 +30590,72 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereUniqueInput", + "name": "CallRequestWhereInput", "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutEthAccountAuthedInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CallRequestWhereInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutEthAccountsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "id_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutEthAccountInput", - "description": null, - "fields": null, - "inputFields": [ + }, + { + "name": "id_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, { - "name": "connect", - "description": null, + "name": "id_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -187296,28 +30663,17 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateWithoutContractSourceInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "id_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", "name": "ID", @@ -187326,173 +30682,174 @@ "defaultValue": null }, { - "name": "name", - "description": null, + "name": "id_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "id_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "address", - "description": null, + "name": "id_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "type", - "description": null, + "name": "id_contains", + "description": "All values containing the given string.", "type": { - "kind": "ENUM", - "name": "EthAccountType", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "source", - "description": null, + "name": "id_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "bytecode", - "description": null, + "name": "id_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "abi", - "description": null, + "name": "id_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "id_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutEthAccountsInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Transaction", - "description": null, + "name": "id_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionCreateOneWithoutAccountInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "IncomeTransactions", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionCreateManyWithoutReceiverInput", + "kind": "ENUM", + "name": "CallRequestStatus", "ofType": null }, "defaultValue": null }, { - "name": "OutcomeTransactions", - "description": null, + "name": "status_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionCreateManyWithoutSenderInput", + "kind": "ENUM", + "name": "CallRequestStatus", "ofType": null }, "defaultValue": null }, { - "name": "BlocksMined", - "description": null, + "name": "status_in", + "description": "All values that are contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockCreateManyWithoutMinerInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CallRequestStatus", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "UserAuthed", - "description": null, + "name": "status_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutEthAccountAuthedInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CallRequestStatus", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Project", + "name": "startedAt", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutEthAccountsInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Resources", - "description": null, + "name": "startedAt_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutEthAccountInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthBlockCreateManyWithoutMinerInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "startedAt_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -187500,185 +30857,194 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthBlockWhereUniqueInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "startedAt_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "name", - "description": null, + "name": "startedAt_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "startedAt_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "address", - "description": null, + "name": "startedAt_gt", + "description": "All values greater than the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, "defaultValue": null }, { - "name": "type", - "description": null, + "name": "startedAt_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "ENUM", - "name": "EthAccountType", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "source", + "name": "endedAt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "bytecode", - "description": null, + "name": "endedAt_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "abi", - "description": null, + "name": "endedAt_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Transaction", - "description": null, + "name": "endedAt_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionCreateOneWithoutAccountInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "IncomeTransactions", - "description": null, + "name": "endedAt_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionCreateManyWithoutReceiverInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "OutcomeTransactions", - "description": null, + "name": "endedAt_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionCreateManyWithoutSenderInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "ContractSource", - "description": null, + "name": "endedAt_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateOneWithoutAccountsInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "BlocksMined", - "description": null, + "name": "endedAt_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockCreateManyWithoutMinerInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "UserAuthed", + "name": "Called", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutEthAccountAuthedInput", + "name": "UserWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "Project", + "name": "Caller", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutEthAccountsInput", + "name": "UserWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "Room", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutEthAccountInput", + "name": "ChatRoomWhereInput", "ofType": null }, "defaultValue": null @@ -187689,189 +31055,279 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateWithoutIncomeTransactionsInput", + "kind": "ENUM", + "name": "CallRequestStatus", "description": null, "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "id", + "name": "Created", "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "Rejected", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Accepted", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Started", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Canceled", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Missed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Ended", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Error", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Billed", "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NotificationTypeWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotificationTypeWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotificationTypeWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "address", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotificationTypeWhereInput", + "ofType": null + } } }, "defaultValue": null }, { - "name": "type", + "name": "id", "description": null, "type": { - "kind": "ENUM", - "name": "EthAccountType", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "source", - "description": null, + "name": "id_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "bytecode", - "description": null, + "name": "id_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "abi", - "description": null, + "name": "id_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "id_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutEthAccountsInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Transaction", - "description": null, + "name": "id_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionCreateOneWithoutAccountInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "OutcomeTransactions", - "description": null, + "name": "id_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionCreateManyWithoutSenderInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "ContractSource", - "description": null, + "name": "id_contains", + "description": "All values containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateOneWithoutAccountsInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "BlocksMined", - "description": null, + "name": "id_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockCreateManyWithoutMinerInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "UserAuthed", - "description": null, + "name": "id_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutEthAccountAuthedInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Project", - "description": null, + "name": "id_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutEthAccountsInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Resources", - "description": null, + "name": "id_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutEthAccountInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateWithoutOutcomeTransactionsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "id_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", "name": "ID", @@ -187880,176 +31336,193 @@ "defaultValue": null }, { - "name": "name", + "name": "createdAt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "createdAt_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "address", - "description": null, + "name": "createdAt_in", + "description": "All values that are contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } } }, "defaultValue": null }, { - "name": "type", - "description": null, + "name": "createdAt_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "ENUM", - "name": "EthAccountType", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "source", - "description": null, + "name": "createdAt_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "bytecode", - "description": null, + "name": "createdAt_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "abi", - "description": null, + "name": "createdAt_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "createdAt_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutEthAccountsInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Transaction", + "name": "updatedAt", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionCreateOneWithoutAccountInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "IncomeTransactions", - "description": null, + "name": "updatedAt_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionCreateManyWithoutReceiverInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "ContractSource", - "description": null, + "name": "updatedAt_in", + "description": "All values that are contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateOneWithoutAccountsInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "BlocksMined", - "description": null, + "name": "updatedAt_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockCreateManyWithoutMinerInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "UserAuthed", - "description": null, + "name": "updatedAt_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutEthAccountAuthedInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Project", - "description": null, + "name": "updatedAt_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutEthAccountsInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Resources", - "description": null, + "name": "updatedAt_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutEthAccountInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateWithoutProjectInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "updatedAt_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null }, "defaultValue": null @@ -188065,42 +31538,54 @@ "defaultValue": null }, { - "name": "description", - "description": null, + "name": "name_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "address", - "description": null, + "name": "name_in", + "description": "All values that are contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null }, { - "name": "type", - "description": null, + "name": "name_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "ENUM", - "name": "EthAccountType", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "source", - "description": null, + "name": "name_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -188109,8 +31594,8 @@ "defaultValue": null }, { - "name": "bytecode", - "description": null, + "name": "name_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -188119,284 +31604,224 @@ "defaultValue": null }, { - "name": "abi", - "description": null, + "name": "name_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutEthAccountsInput", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Transaction", - "description": null, + "name": "name_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionCreateOneWithoutAccountInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "IncomeTransactions", - "description": null, + "name": "name_contains", + "description": "All values containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionCreateManyWithoutReceiverInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "OutcomeTransactions", - "description": null, + "name": "name_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionCreateManyWithoutSenderInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ContractSource", - "description": null, + "name": "name_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateOneWithoutAccountsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "BlocksMined", - "description": null, + "name": "name_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockCreateManyWithoutMinerInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "UserAuthed", - "description": null, + "name": "name_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutEthAccountAuthedInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Resources", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutEthAccountInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateWithoutResourcesInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, + "name": "name_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "code", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "code_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "address", - "description": null, + "name": "code_in", + "description": "All values that are contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } } }, "defaultValue": null }, { - "name": "type", - "description": null, + "name": "code_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "ENUM", - "name": "EthAccountType", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "source", - "description": null, + "name": "code_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "bytecode", - "description": null, + "name": "code_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "abi", - "description": null, + "name": "code_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutEthAccountsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Transaction", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionCreateOneWithoutAccountInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "IncomeTransactions", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionCreateManyWithoutReceiverInput", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "OutcomeTransactions", - "description": null, + "name": "code_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionCreateManyWithoutSenderInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "ContractSource", - "description": null, + "name": "code_contains", + "description": "All values containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateOneWithoutAccountsInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "BlocksMined", - "description": null, + "name": "code_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockCreateManyWithoutMinerInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "UserAuthed", - "description": null, + "name": "code_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutEthAccountAuthedInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Project", - "description": null, + "name": "code_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutEthAccountsInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateWithoutTransactionInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "code_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", "name": "ID", @@ -188405,7 +31830,17 @@ "defaultValue": null }, { - "name": "name", + "name": "code_not_ends_with", + "description": "All values not ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "comment", "description": null, "type": { "kind": "SCALAR", @@ -188415,42 +31850,64 @@ "defaultValue": null }, { - "name": "description", - "description": null, + "name": "comment_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "address", - "description": null, + "name": "comment_in", + "description": "All values that are contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null }, { - "name": "type", - "description": null, + "name": "comment_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "ENUM", - "name": "EthAccountType", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "comment_lt", + "description": "All values less than the given value.", + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "source", - "description": null, + "name": "comment_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -188459,8 +31916,8 @@ "defaultValue": null }, { - "name": "bytecode", - "description": null, + "name": "comment_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -188469,91 +31926,111 @@ "defaultValue": null }, { - "name": "abi", - "description": null, + "name": "comment_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "comment_contains", + "description": "All values containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutEthAccountsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "IncomeTransactions", - "description": null, + "name": "comment_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionCreateManyWithoutReceiverInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "OutcomeTransactions", - "description": null, + "name": "comment_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionCreateManyWithoutSenderInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ContractSource", - "description": null, + "name": "comment_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateOneWithoutAccountsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "BlocksMined", + "name": "comment_ends_with", + "description": "All values ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "comment_not_ends_with", + "description": "All values not ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Users_every", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthBlockCreateManyWithoutMinerInput", + "name": "UserWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "UserAuthed", + "name": "Users_some", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutEthAccountAuthedInput", + "name": "UserWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "Project", + "name": "Users_none", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutEthAccountsInput", + "name": "UserWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutEthAccountInput", + "name": "UserWhereInput", "ofType": null }, "defaultValue": null @@ -188565,363 +32042,357 @@ }, { "kind": "INPUT_OBJECT", - "name": "EthAccountCreateWithoutUserAuthedInput", + "name": "TopicWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TopicWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "name", + "name": "OR", + "description": "Logical OR on all given filters.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TopicWhereInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TopicWhereInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "id_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "address", - "description": null, + "name": "id_in", + "description": "All values that are contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } } }, "defaultValue": null }, { - "name": "type", - "description": null, + "name": "id_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "ENUM", - "name": "EthAccountType", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "source", - "description": null, + "name": "id_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "bytecode", - "description": null, + "name": "id_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "abi", - "description": null, + "name": "id_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "id_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutEthAccountsInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Transaction", - "description": null, + "name": "id_contains", + "description": "All values containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionCreateOneWithoutAccountInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "IncomeTransactions", - "description": null, + "name": "id_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionCreateManyWithoutReceiverInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "OutcomeTransactions", - "description": null, + "name": "id_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionCreateManyWithoutSenderInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "ContractSource", - "description": null, + "name": "id_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateOneWithoutAccountsInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "BlocksMined", - "description": null, + "name": "id_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockCreateManyWithoutMinerInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Project", - "description": null, + "name": "id_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutEthAccountsInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "topic_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutEthAccountInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EthAccountPreviousValues", - "description": null, - "fields": [ + }, { - "name": "id", - "description": null, - "args": [], + "name": "topic_id_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "createdAt", - "description": null, - "args": [], + "name": "topic_id_in", + "description": "All values that are contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedAt", - "description": null, - "args": [], + "name": "topic_id_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "name", - "description": null, - "args": [], + "name": "topic_id_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "description", - "description": null, - "args": [], + "name": "topic_id_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "Int", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "address", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "type", - "description": null, - "args": [], + "name": "topic_id_gt", + "description": "All values greater than the given value.", "type": { - "kind": "ENUM", - "name": "EthAccountType", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "source", - "description": null, - "args": [], + "name": "topic_id_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "bytecode", + "name": "updatedAt", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "abi", - "description": null, - "args": [], + "name": "updatedAt_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "DateTime", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EthAccountSubscriptionPayload", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "mutation", - "description": null, - "args": [], + "name": "updatedAt_in", + "description": "All values that are contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "EthAccount", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedFields", - "description": null, - "args": [], + "name": "updatedAt_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -188930,123 +32401,76 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "previousValues", - "description": null, - "args": [], + "name": "updatedAt_lt", + "description": "All values less than the given value.", "type": { - "kind": "OBJECT", - "name": "EthAccountPreviousValues", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ + "defaultValue": null + }, { - "name": "AND", - "description": "Logical AND on all given filters.", + "name": "updatedAt_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountSubscriptionWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, "defaultValue": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", + "name": "updatedAt_gt", + "description": "All values greater than the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountSubscriptionWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, "defaultValue": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + "name": "updatedAt_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountSubscriptionWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, "defaultValue": null }, { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", + "name": "createdAt", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", + "name": "createdAt_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", + "name": "createdAt_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -189055,7 +32479,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null } } @@ -189063,8 +32487,8 @@ "defaultValue": null }, { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", + "name": "createdAt_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -189073,7 +32497,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null } } @@ -189081,110 +32505,68 @@ "defaultValue": null }, { - "name": "node", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, + "name": "createdAt_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "createdAt_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "address", - "description": null, + "name": "createdAt_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "EthAccountType", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "source", - "description": null, + "name": "createdAt_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "bytecode", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "abi", - "description": null, + "name": "created_at_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "DateTime", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutContractSourceInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "created_at_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -189192,8 +32574,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereUniqueInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null } } @@ -189201,8 +32583,8 @@ "defaultValue": null }, { - "name": "set", - "description": null, + "name": "created_at_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -189210,8 +32592,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereUniqueInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null } } @@ -189219,127 +32601,68 @@ "defaultValue": null }, { - "name": "disconnect", - "description": null, + "name": "created_at_lt", + "description": "All values less than the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, "defaultValue": null }, { - "name": "updateMany", - "description": null, + "name": "created_at_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithWhereNestedInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, "defaultValue": null }, { - "name": "deleteMany", - "description": null, + "name": "created_at_gt", + "description": "All values greater than the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountScalarWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "created_at_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, "defaultValue": null }, { - "name": "set", + "name": "name", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "disconnect", - "description": null, + "name": "name_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "updateMany", - "description": null, + "name": "name_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -189347,8 +32670,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithWhereNestedInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -189356,8 +32679,8 @@ "defaultValue": null }, { - "name": "deleteMany", - "description": null, + "name": "name_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -189365,183 +32688,203 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountScalarWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutBlocksMinedInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "name_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereUniqueInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "disconnect", - "description": null, + "name": "name_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutIncomeTransactionsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "name_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereUniqueInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "disconnect", - "description": null, + "name": "name_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutOutcomeTransactionsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "name_contains", + "description": "All values containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereUniqueInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "disconnect", - "description": null, + "name": "name_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutTransactionInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "name_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereUniqueInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "disconnect", + "name": "name_not_starts_with", + "description": "All values not starting with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_ends_with", + "description": "All values ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_not_ends_with", + "description": "All values not ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url_name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url_name_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url_name_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "url_name_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "url_name_lt", + "description": "All values less than the given value.", + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutUserAuthedInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "url_name_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereUniqueInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "disconnect", - "description": null, + "name": "url_name_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateWithoutBlocksMinedDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", - "description": null, + "name": "url_name_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -189550,18 +32893,18 @@ "defaultValue": null }, { - "name": "description", - "description": null, + "name": "url_name_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "address", - "description": null, + "name": "url_name_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -189570,18 +32913,18 @@ "defaultValue": null }, { - "name": "type", - "description": null, + "name": "url_name_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "ENUM", - "name": "EthAccountType", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "source", - "description": null, + "name": "url_name_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -189590,8 +32933,8 @@ "defaultValue": null }, { - "name": "bytecode", - "description": null, + "name": "url_name_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -189600,171 +32943,154 @@ "defaultValue": null }, { - "name": "abi", - "description": null, + "name": "url_name_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "type_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutEthAccountsInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Transaction", - "description": null, + "name": "type_id_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateOneWithoutAccountInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "IncomeTransactions", - "description": null, + "name": "type_id_in", + "description": "All values that are contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateManyWithoutReceiverInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "OutcomeTransactions", - "description": null, + "name": "type_id_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateManyWithoutSenderInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "ContractSource", - "description": null, + "name": "type_id_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateOneWithoutAccountsInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "UserAuthed", - "description": null, + "name": "type_id_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutEthAccountAuthedInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Project", - "description": null, + "name": "type_id_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutEthAccountsInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Resources", - "description": null, + "name": "type_id_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutEthAccountInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutEthAccountsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "published", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "disconnect", - "description": null, + "name": "published_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", "name": "Boolean", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateOneWithoutAccountInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "description", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereUniqueInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "disconnect", - "description": null, + "name": "description_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateManyWithoutReceiverInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "description_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -189772,8 +33098,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereUniqueInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -189781,8 +33107,8 @@ "defaultValue": null }, { - "name": "set", - "description": null, + "name": "description_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -189790,8 +33116,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereUniqueInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -189799,95 +33125,112 @@ "defaultValue": null }, { - "name": "disconnect", - "description": null, + "name": "description_lt", + "description": "All values less than the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "updateMany", - "description": null, + "name": "description_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateManyWithWhereNestedInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "deleteMany", - "description": null, + "name": "description_gt", + "description": "All values greater than the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionScalarWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", - "description": null, + "name": "description_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionScalarWhereInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "data", + "name": "description_contains", + "description": "All values containing the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description_not_contains", + "description": "All values not containing the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description_starts_with", + "description": "All values starting with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description_not_starts_with", + "description": "All values not starting with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description_ends_with", + "description": "All values ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description_not_ends_with", + "description": "All values not ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "created_by", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateManyDataInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null }, "defaultValue": null } @@ -189898,7 +33241,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "EthTransactionScalarWhereInput", + "name": "CommentWhereInput", "description": null, "fields": null, "inputFields": [ @@ -189913,7 +33256,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "EthTransactionScalarWhereInput", + "name": "CommentWhereInput", "ofType": null } } @@ -189931,7 +33274,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "EthTransactionScalarWhereInput", + "name": "CommentWhereInput", "ofType": null } } @@ -189949,7 +33292,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "EthTransactionScalarWhereInput", + "name": "CommentWhereInput", "ofType": null } } @@ -190305,7 +33648,7 @@ "defaultValue": null }, { - "name": "chainId", + "name": "comment_id", "description": null, "type": { "kind": "SCALAR", @@ -190315,7 +33658,7 @@ "defaultValue": null }, { - "name": "chainId_not", + "name": "comment_id_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", @@ -190325,7 +33668,7 @@ "defaultValue": null }, { - "name": "chainId_in", + "name": "comment_id_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -190343,7 +33686,7 @@ "defaultValue": null }, { - "name": "chainId_not_in", + "name": "comment_id_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -190361,7 +33704,7 @@ "defaultValue": null }, { - "name": "chainId_lt", + "name": "comment_id_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", @@ -190371,7 +33714,7 @@ "defaultValue": null }, { - "name": "chainId_lte", + "name": "comment_id_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", @@ -190381,7 +33724,7 @@ "defaultValue": null }, { - "name": "chainId_gt", + "name": "comment_id_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", @@ -190391,7 +33734,7 @@ "defaultValue": null }, { - "name": "chainId_gte", + "name": "comment_id_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", @@ -190401,27 +33744,27 @@ "defaultValue": null }, { - "name": "amount", + "name": "object_id", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "amount_not", + "name": "object_id_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "amount_in", + "name": "object_id_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -190431,7 +33774,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null } } @@ -190439,7 +33782,7 @@ "defaultValue": null }, { - "name": "amount_not_in", + "name": "object_id_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -190449,7 +33792,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null } } @@ -190457,47 +33800,239 @@ "defaultValue": null }, { - "name": "amount_lt", + "name": "object_id_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "amount_lte", + "name": "object_id_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "amount_gt", + "name": "object_id_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "amount_gte", + "name": "object_id_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "input", + "name": "type_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type_id_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type_id_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "type_id_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "type_id_lt", + "description": "All values less than the given value.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type_id_lte", + "description": "All values less than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type_id_gt", + "description": "All values greater than the given value.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type_id_gte", + "description": "All values greater than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "is_checked", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "is_checked_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "is_checked_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "is_checked_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "is_checked_lt", + "description": "All values less than the given value.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "is_checked_lte", + "description": "All values less than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "is_checked_gt", + "description": "All values greater than the given value.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "is_checked_gte", + "description": "All values greater than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -190507,7 +34042,7 @@ "defaultValue": null }, { - "name": "input_not", + "name": "name_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", @@ -190517,7 +34052,7 @@ "defaultValue": null }, { - "name": "input_in", + "name": "name_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -190535,7 +34070,7 @@ "defaultValue": null }, { - "name": "input_not_in", + "name": "name_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -190553,7 +34088,7 @@ "defaultValue": null }, { - "name": "input_lt", + "name": "name_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", @@ -190563,7 +34098,7 @@ "defaultValue": null }, { - "name": "input_lte", + "name": "name_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", @@ -190573,7 +34108,7 @@ "defaultValue": null }, { - "name": "input_gt", + "name": "name_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", @@ -190583,7 +34118,7 @@ "defaultValue": null }, { - "name": "input_gte", + "name": "name_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", @@ -190593,7 +34128,7 @@ "defaultValue": null }, { - "name": "input_contains", + "name": "name_contains", "description": "All values containing the given string.", "type": { "kind": "SCALAR", @@ -190603,7 +34138,7 @@ "defaultValue": null }, { - "name": "input_not_contains", + "name": "name_not_contains", "description": "All values not containing the given string.", "type": { "kind": "SCALAR", @@ -190613,7 +34148,7 @@ "defaultValue": null }, { - "name": "input_starts_with", + "name": "name_starts_with", "description": "All values starting with the given string.", "type": { "kind": "SCALAR", @@ -190623,7 +34158,7 @@ "defaultValue": null }, { - "name": "input_not_starts_with", + "name": "name_not_starts_with", "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", @@ -190633,7 +34168,7 @@ "defaultValue": null }, { - "name": "input_ends_with", + "name": "name_ends_with", "description": "All values ending with the given string.", "type": { "kind": "SCALAR", @@ -190643,7 +34178,7 @@ "defaultValue": null }, { - "name": "input_not_ends_with", + "name": "name_not_ends_with", "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", @@ -190653,27 +34188,27 @@ "defaultValue": null }, { - "name": "index", + "name": "parent", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "index_not", + "name": "parent_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "index_in", + "name": "parent_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -190683,7 +34218,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null } } @@ -190691,7 +34226,7 @@ "defaultValue": null }, { - "name": "index_not_in", + "name": "parent_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -190701,7 +34236,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null } } @@ -190709,67 +34244,202 @@ "defaultValue": null }, { - "name": "index_lt", + "name": "parent_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "index_lte", + "name": "parent_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "index_gt", + "name": "parent_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "index_gte", + "name": "parent_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "address", + "name": "parent_contains", + "description": "All values containing the given string.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "parent_not_contains", + "description": "All values not containing the given string.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "parent_starts_with", + "description": "All values starting with the given string.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "parent_not_starts_with", + "description": "All values not starting with the given string.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "parent_ends_with", + "description": "All values ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "parent_not_ends_with", + "description": "All values not ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "created_by", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserTarifWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": "Logical AND on all given filters.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserTarifWhereInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "OR", + "description": "Logical OR on all given filters.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserTarifWhereInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserTarifWhereInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "address_not", + "name": "id_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "address_in", + "name": "id_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -190779,7 +34449,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } } @@ -190787,7 +34457,7 @@ "defaultValue": null }, { - "name": "address_not_in", + "name": "id_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -190797,7 +34467,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } } @@ -190805,128 +34475,349 @@ "defaultValue": null }, { - "name": "address_lt", + "name": "id_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "address_lte", + "name": "id_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "address_gt", + "name": "id_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "address_gte", + "name": "id_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "address_contains", + "name": "id_contains", "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "address_not_contains", + "name": "id_not_contains", "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "address_starts_with", + "name": "id_starts_with", "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "address_not_starts_with", + "name": "id_not_starts_with", "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "address_ends_with", + "name": "id_ends_with", "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "address_not_ends_with", + "name": "id_not_ends_with", "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "type", + "name": "createdAt", "description": null, "type": { - "kind": "ENUM", - "name": "EthTransactionType", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "type_not", + "name": "createdAt_not", "description": "All values that are not equal to given value.", "type": { - "kind": "ENUM", - "name": "EthTransactionType", + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "createdAt_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "createdAt_lt", + "description": "All values less than the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_lte", + "description": "All values less than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_gt", + "description": "All values greater than the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_gte", + "description": "All values greater than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "dateTill", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "dateTill_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "dateTill_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "dateTill_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "dateTill_lt", + "description": "All values less than the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "dateTill_lte", + "description": "All values less than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "dateTill_gt", + "description": "All values greater than the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "dateTill_gte", + "description": "All values greater than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "User", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Tarif", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TarifWhereInput", "ofType": null }, "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TarifWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": "Logical AND on all given filters.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TarifWhereInput", + "ofType": null + } + } + }, + "defaultValue": null }, { - "name": "type_in", - "description": "All values that are contained in given list.", + "name": "OR", + "description": "Logical OR on all given filters.", "type": { "kind": "LIST", "name": null, @@ -190934,8 +34825,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "EthTransactionType", + "kind": "INPUT_OBJECT", + "name": "TarifWhereInput", "ofType": null } } @@ -190943,8 +34834,8 @@ "defaultValue": null }, { - "name": "type_not_in", - "description": "All values that are not contained in given list.", + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { "kind": "LIST", "name": null, @@ -190952,8 +34843,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "EthTransactionType", + "kind": "INPUT_OBJECT", + "name": "TarifWhereInput", "ofType": null } } @@ -190961,27 +34852,27 @@ "defaultValue": null }, { - "name": "v", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "v_not", + "name": "id_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "v_in", + "name": "id_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -190991,7 +34882,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } } @@ -190999,7 +34890,7 @@ "defaultValue": null }, { - "name": "v_not_in", + "name": "id_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -191009,7 +34900,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } } @@ -191017,107 +34908,107 @@ "defaultValue": null }, { - "name": "v_lt", + "name": "id_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "v_lte", + "name": "id_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "v_gt", + "name": "id_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "v_gte", + "name": "id_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "v_contains", + "name": "id_contains", "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "v_not_contains", + "name": "id_not_contains", "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "v_starts_with", + "name": "id_starts_with", "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "v_not_starts_with", + "name": "id_not_starts_with", "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "v_ends_with", + "name": "id_ends_with", "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "v_not_ends_with", + "name": "id_not_ends_with", "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "r", + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -191127,7 +35018,7 @@ "defaultValue": null }, { - "name": "r_not", + "name": "name_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", @@ -191137,7 +35028,7 @@ "defaultValue": null }, { - "name": "r_in", + "name": "name_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -191155,7 +35046,7 @@ "defaultValue": null }, { - "name": "r_not_in", + "name": "name_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -191173,7 +35064,7 @@ "defaultValue": null }, { - "name": "r_lt", + "name": "name_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", @@ -191183,7 +35074,7 @@ "defaultValue": null }, { - "name": "r_lte", + "name": "name_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", @@ -191193,7 +35084,7 @@ "defaultValue": null }, { - "name": "r_gt", + "name": "name_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", @@ -191203,7 +35094,7 @@ "defaultValue": null }, { - "name": "r_gte", + "name": "name_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", @@ -191213,7 +35104,7 @@ "defaultValue": null }, { - "name": "r_contains", + "name": "name_contains", "description": "All values containing the given string.", "type": { "kind": "SCALAR", @@ -191223,7 +35114,7 @@ "defaultValue": null }, { - "name": "r_not_contains", + "name": "name_not_contains", "description": "All values not containing the given string.", "type": { "kind": "SCALAR", @@ -191233,7 +35124,7 @@ "defaultValue": null }, { - "name": "r_starts_with", + "name": "name_starts_with", "description": "All values starting with the given string.", "type": { "kind": "SCALAR", @@ -191243,7 +35134,7 @@ "defaultValue": null }, { - "name": "r_not_starts_with", + "name": "name_not_starts_with", "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", @@ -191253,7 +35144,7 @@ "defaultValue": null }, { - "name": "r_ends_with", + "name": "name_ends_with", "description": "All values ending with the given string.", "type": { "kind": "SCALAR", @@ -191263,7 +35154,7 @@ "defaultValue": null }, { - "name": "r_not_ends_with", + "name": "name_not_ends_with", "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", @@ -191273,27 +35164,47 @@ "defaultValue": null }, { - "name": "s", + "name": "active", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "s_not", + "name": "active_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "s_in", + "name": "maxPriceItems", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "maxPriceItems_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "maxPriceItems_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -191303,7 +35214,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } } @@ -191311,7 +35222,7 @@ "defaultValue": null }, { - "name": "s_not_in", + "name": "maxPriceItems_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -191321,7 +35232,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } } @@ -191329,129 +35240,134 @@ "defaultValue": null }, { - "name": "s_lt", + "name": "maxPriceItems_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "s_lte", + "name": "maxPriceItems_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "s_gt", + "name": "maxPriceItems_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "s_gte", + "name": "maxPriceItems_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "s_contains", - "description": "All values containing the given string.", + "name": "price", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "s_not_contains", - "description": "All values not containing the given string.", + "name": "price_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "s_starts_with", - "description": "All values starting with the given string.", + "name": "price_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "s_not_starts_with", - "description": "All values not starting with the given string.", + "name": "price_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "s_ends_with", - "description": "All values ending with the given string.", + "name": "price_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "s_not_ends_with", - "description": "All values not ending with the given string.", + "name": "price_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "chainId", - "description": null, + "name": "price_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "amount", - "description": null, + "name": "price_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", "name": "Float", @@ -191460,71 +35376,71 @@ "defaultValue": null }, { - "name": "input", + "name": "allowIcon", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "index", - "description": null, + "name": "allowIcon_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "address", + "name": "allowBanner", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "type", - "description": null, + "name": "allowBanner_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "ENUM", - "name": "EthTransactionType", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "v", + "name": "UserTarifs_every", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserTarifWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "r", + "name": "UserTarifs_some", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserTarifWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "s", + "name": "UserTarifs_none", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserTarifWhereInput", "ofType": null }, "defaultValue": null @@ -191536,49 +35452,13 @@ }, { "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateManyWithoutSenderInput", + "name": "AccountWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { "kind": "LIST", "name": null, @@ -191587,7 +35467,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereUniqueInput", + "name": "AccountWhereInput", "ofType": null } } @@ -191595,8 +35475,8 @@ "defaultValue": null }, { - "name": "updateMany", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { "kind": "LIST", "name": null, @@ -191605,7 +35485,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateManyWithWhereNestedInput", + "name": "AccountWhereInput", "ofType": null } } @@ -191613,8 +35493,8 @@ "defaultValue": null }, { - "name": "deleteMany", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { "kind": "LIST", "name": null, @@ -191623,125 +35503,36 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "EthTransactionScalarWhereInput", + "name": "AccountWhereInput", "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutEthAccountAuthedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - }, - "defaultValue": null }, { - "name": "disconnect", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutEthAccountsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "disconnect", - "description": null, + "name": "id_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutEthAccountInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null }, { - "name": "disconnect", - "description": null, + "name": "id_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -191749,8 +35540,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } } @@ -191758,8 +35549,8 @@ "defaultValue": null }, { - "name": "updateMany", - "description": null, + "name": "id_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -191767,8 +35558,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithWhereNestedInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } } @@ -191776,198 +35567,128 @@ "defaultValue": null }, { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateWithoutContractSourceDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, + "name": "id_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "id_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "address", - "description": null, + "name": "id_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "EthAccountType", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "source", - "description": null, + "name": "id_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "bytecode", - "description": null, + "name": "id_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "abi", - "description": null, + "name": "id_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutEthAccountsInput", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Transaction", - "description": null, + "name": "id_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateOneWithoutAccountInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "IncomeTransactions", - "description": null, + "name": "id_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateManyWithoutReceiverInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "OutcomeTransactions", - "description": null, + "name": "id_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateManyWithoutSenderInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "BlocksMined", - "description": null, + "name": "id_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockUpdateManyWithoutMinerInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "UserAuthed", + "name": "balance", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutEthAccountAuthedInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Project", - "description": null, + "name": "balance_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutEthAccountsInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Resources", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutEthAccountInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthBlockUpdateManyWithoutMinerInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, + "name": "balance_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -191975,8 +35696,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthBlockWhereUniqueInput", + "kind": "SCALAR", + "name": "Float", "ofType": null } } @@ -191984,8 +35705,8 @@ "defaultValue": null }, { - "name": "set", - "description": null, + "name": "balance_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -191993,8 +35714,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthBlockWhereUniqueInput", + "kind": "SCALAR", + "name": "Float", "ofType": null } } @@ -192002,95 +35723,82 @@ "defaultValue": null }, { - "name": "disconnect", - "description": null, + "name": "balance_lt", + "description": "All values less than the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthBlockWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "balance_lte", + "description": "All values less than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "balance_gt", + "description": "All values greater than the given value.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "balance_gte", + "description": "All values greater than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null }, { - "name": "updateMany", + "name": "User", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthBlockUpdateManyWithWhereNestedInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null }, "defaultValue": null }, { - "name": "deleteMany", + "name": "Transactions_every", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthBlockScalarWhereInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "TransactionWhereInput", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthBlockUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "Transactions_some", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthBlockScalarWhereInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "TransactionWhereInput", + "ofType": null }, "defaultValue": null }, { - "name": "data", + "name": "Transactions_none", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthBlockUpdateManyDataInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "TransactionWhereInput", + "ofType": null }, "defaultValue": null } @@ -192101,7 +35809,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "EthBlockScalarWhereInput", + "name": "TransactionWhereInput", "description": null, "fields": null, "inputFields": [ @@ -192116,7 +35824,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "EthBlockScalarWhereInput", + "name": "TransactionWhereInput", "ofType": null } } @@ -192134,7 +35842,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "EthBlockScalarWhereInput", + "name": "TransactionWhereInput", "ofType": null } } @@ -192152,7 +35860,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "EthBlockScalarWhereInput", + "name": "TransactionWhereInput", "ofType": null } } @@ -192412,27 +36120,27 @@ "defaultValue": null }, { - "name": "updatedAt", + "name": "amount", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_not", + "name": "amount_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_in", + "name": "amount_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -192442,7 +36150,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null } } @@ -192450,7 +36158,7 @@ "defaultValue": null }, { - "name": "updatedAt_not_in", + "name": "amount_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -192460,7 +36168,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null } } @@ -192468,67 +36176,152 @@ "defaultValue": null }, { - "name": "updatedAt_lt", + "name": "amount_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_lte", + "name": "amount_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_gt", + "name": "amount_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_gte", + "name": "amount_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "hash", + "name": "Account", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "CreatedBy", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PlaceWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": "Logical AND on all given filters.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PlaceWhereInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "OR", + "description": "Logical OR on all given filters.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PlaceWhereInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PlaceWhereInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "hash_not", + "name": "id_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "hash_in", + "name": "id_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -192538,7 +36331,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } } @@ -192546,7 +36339,7 @@ "defaultValue": null }, { - "name": "hash_not_in", + "name": "id_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -192556,7 +36349,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } } @@ -192564,107 +36357,299 @@ "defaultValue": null }, { - "name": "hash_lt", + "name": "id_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "hash_lte", + "name": "id_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "hash_gt", + "name": "id_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "hash_gte", + "name": "id_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "hash_contains", + "name": "id_contains", "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "hash_not_contains", + "name": "id_not_contains", "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "hash_starts_with", + "name": "id_starts_with", "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "hash_not_starts_with", + "name": "id_not_starts_with", "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "hash_ends_with", + "name": "id_ends_with", "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not_ends_with", + "description": "All values not ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "updatedAt_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "updatedAt_lt", + "description": "All values less than the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_lte", + "description": "All values less than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_gt", + "description": "All values greater than the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_gte", + "description": "All values greater than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "createdAt_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "createdAt_lt", + "description": "All values less than the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_lte", + "description": "All values less than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_gt", + "description": "All values greater than the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "hash_not_ends_with", - "description": "All values not ending with the given string.", + "name": "createdAt_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "number", + "name": "place_id", "description": null, "type": { "kind": "SCALAR", @@ -192674,7 +36659,7 @@ "defaultValue": null }, { - "name": "number_not", + "name": "place_id_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", @@ -192684,7 +36669,7 @@ "defaultValue": null }, { - "name": "number_in", + "name": "place_id_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -192702,7 +36687,7 @@ "defaultValue": null }, { - "name": "number_not_in", + "name": "place_id_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -192720,7 +36705,7 @@ "defaultValue": null }, { - "name": "number_lt", + "name": "place_id_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", @@ -192730,7 +36715,7 @@ "defaultValue": null }, { - "name": "number_lte", + "name": "place_id_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", @@ -192740,7 +36725,7 @@ "defaultValue": null }, { - "name": "number_gt", + "name": "place_id_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", @@ -192750,7 +36735,7 @@ "defaultValue": null }, { - "name": "number_gte", + "name": "place_id_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", @@ -192760,27 +36745,27 @@ "defaultValue": null }, { - "name": "difficulty", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "difficulty_not", + "name": "name_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "difficulty_in", + "name": "name_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -192790,7 +36775,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } } @@ -192798,7 +36783,7 @@ "defaultValue": null }, { - "name": "difficulty_not_in", + "name": "name_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -192808,7 +36793,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } } @@ -192816,67 +36801,127 @@ "defaultValue": null }, { - "name": "difficulty_lt", + "name": "name_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "difficulty_lte", + "name": "name_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "difficulty_gt", + "name": "name_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "difficulty_gte", + "name": "name_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "totalDifficulty", + "name": "name_contains", + "description": "All values containing the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_not_contains", + "description": "All values not containing the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_starts_with", + "description": "All values starting with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_not_starts_with", + "description": "All values not starting with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_ends_with", + "description": "All values ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_not_ends_with", + "description": "All values not ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "totalDifficulty_not", + "name": "description_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "totalDifficulty_in", + "name": "description_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -192886,7 +36931,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } } @@ -192894,7 +36939,7 @@ "defaultValue": null }, { - "name": "totalDifficulty_not_in", + "name": "description_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -192904,7 +36949,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } } @@ -192912,47 +36957,107 @@ "defaultValue": null }, { - "name": "totalDifficulty_lt", + "name": "description_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "totalDifficulty_lte", + "name": "description_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "totalDifficulty_gt", + "name": "description_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "totalDifficulty_gte", + "name": "description_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "extraData", + "name": "description_contains", + "description": "All values containing the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description_not_contains", + "description": "All values not containing the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description_starts_with", + "description": "All values starting with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description_not_starts_with", + "description": "All values not starting with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description_ends_with", + "description": "All values ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description_not_ends_with", + "description": "All values not ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "address", "description": null, "type": { "kind": "SCALAR", @@ -192962,7 +37067,7 @@ "defaultValue": null }, { - "name": "extraData_not", + "name": "address_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", @@ -192972,7 +37077,7 @@ "defaultValue": null }, { - "name": "extraData_in", + "name": "address_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -192990,7 +37095,7 @@ "defaultValue": null }, { - "name": "extraData_not_in", + "name": "address_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -193008,7 +37113,7 @@ "defaultValue": null }, { - "name": "extraData_lt", + "name": "address_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", @@ -193018,7 +37123,7 @@ "defaultValue": null }, { - "name": "extraData_lte", + "name": "address_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", @@ -193028,7 +37133,7 @@ "defaultValue": null }, { - "name": "extraData_gt", + "name": "address_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", @@ -193038,7 +37143,7 @@ "defaultValue": null }, { - "name": "extraData_gte", + "name": "address_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", @@ -193048,7 +37153,7 @@ "defaultValue": null }, { - "name": "extraData_contains", + "name": "address_contains", "description": "All values containing the given string.", "type": { "kind": "SCALAR", @@ -193058,7 +37163,7 @@ "defaultValue": null }, { - "name": "extraData_not_contains", + "name": "address_not_contains", "description": "All values not containing the given string.", "type": { "kind": "SCALAR", @@ -193068,7 +37173,7 @@ "defaultValue": null }, { - "name": "extraData_starts_with", + "name": "address_starts_with", "description": "All values starting with the given string.", "type": { "kind": "SCALAR", @@ -193078,7 +37183,7 @@ "defaultValue": null }, { - "name": "extraData_not_starts_with", + "name": "address_not_starts_with", "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", @@ -193088,7 +37193,7 @@ "defaultValue": null }, { - "name": "extraData_ends_with", + "name": "address_ends_with", "description": "All values ending with the given string.", "type": { "kind": "SCALAR", @@ -193098,7 +37203,7 @@ "defaultValue": null }, { - "name": "extraData_not_ends_with", + "name": "address_not_ends_with", "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", @@ -193108,7 +37213,7 @@ "defaultValue": null }, { - "name": "gasLimit", + "name": "lng", "description": null, "type": { "kind": "SCALAR", @@ -193118,7 +37223,7 @@ "defaultValue": null }, { - "name": "gasLimit_not", + "name": "lng_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", @@ -193128,7 +37233,7 @@ "defaultValue": null }, { - "name": "gasLimit_in", + "name": "lng_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -193146,7 +37251,7 @@ "defaultValue": null }, { - "name": "gasLimit_not_in", + "name": "lng_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -193164,7 +37269,7 @@ "defaultValue": null }, { - "name": "gasLimit_lt", + "name": "lng_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", @@ -193174,7 +37279,7 @@ "defaultValue": null }, { - "name": "gasLimit_lte", + "name": "lng_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", @@ -193184,7 +37289,7 @@ "defaultValue": null }, { - "name": "gasLimit_gt", + "name": "lng_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", @@ -193194,7 +37299,7 @@ "defaultValue": null }, { - "name": "gasLimit_gte", + "name": "lng_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", @@ -193204,7 +37309,7 @@ "defaultValue": null }, { - "name": "gasUsed", + "name": "lat", "description": null, "type": { "kind": "SCALAR", @@ -193214,7 +37319,7 @@ "defaultValue": null }, { - "name": "gasUsed_not", + "name": "lat_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", @@ -193224,7 +37329,7 @@ "defaultValue": null }, { - "name": "gasUsed_in", + "name": "lat_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -193242,7 +37347,7 @@ "defaultValue": null }, { - "name": "gasUsed_not_in", + "name": "lat_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -193260,7 +37365,7 @@ "defaultValue": null }, { - "name": "gasUsed_lt", + "name": "lat_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", @@ -193270,7 +37375,7 @@ "defaultValue": null }, { - "name": "gasUsed_lte", + "name": "lat_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", @@ -193280,7 +37385,7 @@ "defaultValue": null }, { - "name": "gasUsed_gt", + "name": "lat_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", @@ -193290,7 +37395,7 @@ "defaultValue": null }, { - "name": "gasUsed_gte", + "name": "lat_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", @@ -193300,7 +37405,7 @@ "defaultValue": null }, { - "name": "mixHash", + "name": "website", "description": null, "type": { "kind": "SCALAR", @@ -193310,7 +37415,7 @@ "defaultValue": null }, { - "name": "mixHash_not", + "name": "website_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", @@ -193320,7 +37425,7 @@ "defaultValue": null }, { - "name": "mixHash_in", + "name": "website_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -193338,7 +37443,7 @@ "defaultValue": null }, { - "name": "mixHash_not_in", + "name": "website_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -193356,7 +37461,7 @@ "defaultValue": null }, { - "name": "mixHash_lt", + "name": "website_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", @@ -193366,7 +37471,7 @@ "defaultValue": null }, { - "name": "mixHash_lte", + "name": "website_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", @@ -193376,7 +37481,7 @@ "defaultValue": null }, { - "name": "mixHash_gt", + "name": "website_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", @@ -193386,7 +37491,7 @@ "defaultValue": null }, { - "name": "mixHash_gte", + "name": "website_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", @@ -193396,7 +37501,7 @@ "defaultValue": null }, { - "name": "mixHash_contains", + "name": "website_contains", "description": "All values containing the given string.", "type": { "kind": "SCALAR", @@ -193406,7 +37511,7 @@ "defaultValue": null }, { - "name": "mixHash_not_contains", + "name": "website_not_contains", "description": "All values not containing the given string.", "type": { "kind": "SCALAR", @@ -193416,7 +37521,7 @@ "defaultValue": null }, { - "name": "mixHash_starts_with", + "name": "website_starts_with", "description": "All values starting with the given string.", "type": { "kind": "SCALAR", @@ -193426,7 +37531,7 @@ "defaultValue": null }, { - "name": "mixHash_not_starts_with", + "name": "website_not_starts_with", "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", @@ -193436,7 +37541,7 @@ "defaultValue": null }, { - "name": "mixHash_ends_with", + "name": "website_ends_with", "description": "All values ending with the given string.", "type": { "kind": "SCALAR", @@ -193446,7 +37551,7 @@ "defaultValue": null }, { - "name": "mixHash_not_ends_with", + "name": "website_not_ends_with", "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", @@ -193456,7 +37561,7 @@ "defaultValue": null }, { - "name": "nonce", + "name": "phone", "description": null, "type": { "kind": "SCALAR", @@ -193466,7 +37571,7 @@ "defaultValue": null }, { - "name": "nonce_not", + "name": "phone_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", @@ -193476,7 +37581,7 @@ "defaultValue": null }, { - "name": "nonce_in", + "name": "phone_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -193494,7 +37599,7 @@ "defaultValue": null }, { - "name": "nonce_not_in", + "name": "phone_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -193512,7 +37617,7 @@ "defaultValue": null }, { - "name": "nonce_lt", + "name": "phone_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", @@ -193522,7 +37627,7 @@ "defaultValue": null }, { - "name": "nonce_lte", + "name": "phone_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", @@ -193532,7 +37637,7 @@ "defaultValue": null }, { - "name": "nonce_gt", + "name": "phone_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", @@ -193542,7 +37647,7 @@ "defaultValue": null }, { - "name": "nonce_gte", + "name": "phone_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", @@ -193552,7 +37657,7 @@ "defaultValue": null }, { - "name": "nonce_contains", + "name": "phone_contains", "description": "All values containing the given string.", "type": { "kind": "SCALAR", @@ -193562,7 +37667,7 @@ "defaultValue": null }, { - "name": "nonce_not_contains", + "name": "phone_not_contains", "description": "All values not containing the given string.", "type": { "kind": "SCALAR", @@ -193572,7 +37677,7 @@ "defaultValue": null }, { - "name": "nonce_starts_with", + "name": "phone_starts_with", "description": "All values starting with the given string.", "type": { "kind": "SCALAR", @@ -193582,7 +37687,7 @@ "defaultValue": null }, { - "name": "nonce_not_starts_with", + "name": "phone_not_starts_with", "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", @@ -193592,7 +37697,7 @@ "defaultValue": null }, { - "name": "nonce_ends_with", + "name": "phone_ends_with", "description": "All values ending with the given string.", "type": { "kind": "SCALAR", @@ -193602,7 +37707,7 @@ "defaultValue": null }, { - "name": "nonce_not_ends_with", + "name": "phone_not_ends_with", "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", @@ -193612,7 +37717,7 @@ "defaultValue": null }, { - "name": "parentHash", + "name": "work_hours", "description": null, "type": { "kind": "SCALAR", @@ -193622,7 +37727,7 @@ "defaultValue": null }, { - "name": "parentHash_not", + "name": "work_hours_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", @@ -193632,7 +37737,7 @@ "defaultValue": null }, { - "name": "parentHash_in", + "name": "work_hours_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -193650,7 +37755,7 @@ "defaultValue": null }, { - "name": "parentHash_not_in", + "name": "work_hours_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -193668,7 +37773,7 @@ "defaultValue": null }, { - "name": "parentHash_lt", + "name": "work_hours_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", @@ -193678,7 +37783,7 @@ "defaultValue": null }, { - "name": "parentHash_lte", + "name": "work_hours_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", @@ -193688,7 +37793,7 @@ "defaultValue": null }, { - "name": "parentHash_gt", + "name": "work_hours_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", @@ -193698,7 +37803,7 @@ "defaultValue": null }, { - "name": "parentHash_gte", + "name": "work_hours_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", @@ -193708,7 +37813,7 @@ "defaultValue": null }, { - "name": "parentHash_contains", + "name": "work_hours_contains", "description": "All values containing the given string.", "type": { "kind": "SCALAR", @@ -193718,7 +37823,7 @@ "defaultValue": null }, { - "name": "parentHash_not_contains", + "name": "work_hours_not_contains", "description": "All values not containing the given string.", "type": { "kind": "SCALAR", @@ -193728,7 +37833,7 @@ "defaultValue": null }, { - "name": "parentHash_starts_with", + "name": "work_hours_starts_with", "description": "All values starting with the given string.", "type": { "kind": "SCALAR", @@ -193738,7 +37843,7 @@ "defaultValue": null }, { - "name": "parentHash_not_starts_with", + "name": "work_hours_not_starts_with", "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", @@ -193748,7 +37853,7 @@ "defaultValue": null }, { - "name": "parentHash_ends_with", + "name": "work_hours_ends_with", "description": "All values ending with the given string.", "type": { "kind": "SCALAR", @@ -193758,7 +37863,7 @@ "defaultValue": null }, { - "name": "parentHash_not_ends_with", + "name": "work_hours_not_ends_with", "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", @@ -193768,7 +37873,7 @@ "defaultValue": null }, { - "name": "receiptsRoot", + "name": "metro", "description": null, "type": { "kind": "SCALAR", @@ -193778,7 +37883,7 @@ "defaultValue": null }, { - "name": "receiptsRoot_not", + "name": "metro_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", @@ -193788,7 +37893,7 @@ "defaultValue": null }, { - "name": "receiptsRoot_in", + "name": "metro_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -193806,7 +37911,7 @@ "defaultValue": null }, { - "name": "receiptsRoot_not_in", + "name": "metro_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -193824,7 +37929,7 @@ "defaultValue": null }, { - "name": "receiptsRoot_lt", + "name": "metro_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", @@ -193834,7 +37939,7 @@ "defaultValue": null }, { - "name": "receiptsRoot_lte", + "name": "metro_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", @@ -193844,7 +37949,7 @@ "defaultValue": null }, { - "name": "receiptsRoot_gt", + "name": "metro_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", @@ -193854,7 +37959,7 @@ "defaultValue": null }, { - "name": "receiptsRoot_gte", + "name": "metro_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", @@ -193864,7 +37969,7 @@ "defaultValue": null }, { - "name": "receiptsRoot_contains", + "name": "metro_contains", "description": "All values containing the given string.", "type": { "kind": "SCALAR", @@ -193874,7 +37979,7 @@ "defaultValue": null }, { - "name": "receiptsRoot_not_contains", + "name": "metro_not_contains", "description": "All values not containing the given string.", "type": { "kind": "SCALAR", @@ -193884,7 +37989,7 @@ "defaultValue": null }, { - "name": "receiptsRoot_starts_with", + "name": "metro_starts_with", "description": "All values starting with the given string.", "type": { "kind": "SCALAR", @@ -193894,7 +37999,7 @@ "defaultValue": null }, { - "name": "receiptsRoot_not_starts_with", + "name": "metro_not_starts_with", "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", @@ -193904,7 +38009,7 @@ "defaultValue": null }, { - "name": "receiptsRoot_ends_with", + "name": "metro_ends_with", "description": "All values ending with the given string.", "type": { "kind": "SCALAR", @@ -193914,7 +38019,7 @@ "defaultValue": null }, { - "name": "receiptsRoot_not_ends_with", + "name": "metro_not_ends_with", "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", @@ -193924,7 +38029,7 @@ "defaultValue": null }, { - "name": "sha3Uncles", + "name": "url_name", "description": null, "type": { "kind": "SCALAR", @@ -193934,7 +38039,7 @@ "defaultValue": null }, { - "name": "sha3Uncles_not", + "name": "url_name_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", @@ -193944,7 +38049,7 @@ "defaultValue": null }, { - "name": "sha3Uncles_in", + "name": "url_name_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -193962,7 +38067,7 @@ "defaultValue": null }, { - "name": "sha3Uncles_not_in", + "name": "url_name_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -193980,7 +38085,7 @@ "defaultValue": null }, { - "name": "sha3Uncles_lt", + "name": "url_name_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", @@ -193990,7 +38095,7 @@ "defaultValue": null }, { - "name": "sha3Uncles_lte", + "name": "url_name_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", @@ -194000,7 +38105,7 @@ "defaultValue": null }, { - "name": "sha3Uncles_gt", + "name": "url_name_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", @@ -194010,7 +38115,7 @@ "defaultValue": null }, { - "name": "sha3Uncles_gte", + "name": "url_name_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", @@ -194020,7 +38125,7 @@ "defaultValue": null }, { - "name": "sha3Uncles_contains", + "name": "url_name_contains", "description": "All values containing the given string.", "type": { "kind": "SCALAR", @@ -194030,7 +38135,7 @@ "defaultValue": null }, { - "name": "sha3Uncles_not_contains", + "name": "url_name_not_contains", "description": "All values not containing the given string.", "type": { "kind": "SCALAR", @@ -194040,7 +38145,7 @@ "defaultValue": null }, { - "name": "sha3Uncles_starts_with", + "name": "url_name_starts_with", "description": "All values starting with the given string.", "type": { "kind": "SCALAR", @@ -194050,7 +38155,7 @@ "defaultValue": null }, { - "name": "sha3Uncles_not_starts_with", + "name": "url_name_not_starts_with", "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", @@ -194060,7 +38165,7 @@ "defaultValue": null }, { - "name": "sha3Uncles_ends_with", + "name": "url_name_ends_with", "description": "All values ending with the given string.", "type": { "kind": "SCALAR", @@ -194070,7 +38175,7 @@ "defaultValue": null }, { - "name": "sha3Uncles_not_ends_with", + "name": "url_name_not_ends_with", "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", @@ -194080,27 +38185,27 @@ "defaultValue": null }, { - "name": "size", + "name": "image", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "size_not", + "name": "image_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "size_in", + "name": "image_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -194110,7 +38215,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } } @@ -194118,7 +38223,7 @@ "defaultValue": null }, { - "name": "size_not_in", + "name": "image_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -194128,7 +38233,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } } @@ -194136,48 +38241,48 @@ "defaultValue": null }, { - "name": "size_lt", + "name": "image_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "size_lte", + "name": "image_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "size_gt", + "name": "image_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "size_gte", + "name": "image_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "stateRoot", - "description": null, + "name": "image_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -194186,8 +38291,8 @@ "defaultValue": null }, { - "name": "stateRoot_not", - "description": "All values that are not equal to given value.", + "name": "image_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -194196,44 +38301,28 @@ "defaultValue": null }, { - "name": "stateRoot_in", - "description": "All values that are contained in given list.", + "name": "image_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "stateRoot_not_in", - "description": "All values that are not contained in given list.", + "name": "image_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "stateRoot_lt", - "description": "All values less than the given value.", + "name": "image_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -194242,8 +38331,8 @@ "defaultValue": null }, { - "name": "stateRoot_lte", - "description": "All values less than or equal the given value.", + "name": "image_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -194252,107 +38341,107 @@ "defaultValue": null }, { - "name": "stateRoot_gt", - "description": "All values greater than the given value.", + "name": "is_bar", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "stateRoot_gte", - "description": "All values greater than or equal the given value.", + "name": "is_bar_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "stateRoot_contains", - "description": "All values containing the given string.", + "name": "is_shop", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "stateRoot_not_contains", - "description": "All values not containing the given string.", + "name": "is_shop_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "stateRoot_starts_with", - "description": "All values starting with the given string.", + "name": "is_brewery", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "stateRoot_not_starts_with", - "description": "All values not starting with the given string.", + "name": "is_brewery_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "stateRoot_ends_with", - "description": "All values ending with the given string.", + "name": "active", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "stateRoot_not_ends_with", - "description": "All values not ending with the given string.", + "name": "active_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "date", + "name": "email", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "date_not", + "name": "email_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "date_in", + "name": "email_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -194362,7 +38451,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null } } @@ -194370,7 +38459,7 @@ "defaultValue": null }, { - "name": "date_not_in", + "name": "email_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -194380,7 +38469,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null } } @@ -194388,48 +38477,48 @@ "defaultValue": null }, { - "name": "date_lt", + "name": "email_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "date_lte", + "name": "email_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "date_gt", + "name": "email_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "date_gte", + "name": "email_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "transactionsRoot", - "description": null, + "name": "email_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -194438,8 +38527,8 @@ "defaultValue": null }, { - "name": "transactionsRoot_not", - "description": "All values that are not equal to given value.", + "name": "email_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -194448,7 +38537,87 @@ "defaultValue": null }, { - "name": "transactionsRoot_in", + "name": "email_starts_with", + "description": "All values starting with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "email_not_starts_with", + "description": "All values not starting with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "email_ends_with", + "description": "All values ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "email_not_ends_with", + "description": "All values not ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "best", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "best_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "is_request", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "is_request_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "is_request_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -194458,7 +38627,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } } @@ -194466,7 +38635,7 @@ "defaultValue": null }, { - "name": "transactionsRoot_not_in", + "name": "is_request_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -194476,7 +38645,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } } @@ -194484,127 +38653,202 @@ "defaultValue": null }, { - "name": "transactionsRoot_lt", + "name": "is_request_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "transactionsRoot_lte", + "name": "is_request_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "transactionsRoot_gt", + "name": "is_request_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "transactionsRoot_gte", + "name": "is_request_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "transactionsRoot_contains", - "description": "All values containing the given string.", + "name": "beers_every", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "PlaceBeerWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "transactionsRoot_not_contains", - "description": "All values not containing the given string.", + "name": "beers_some", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "PlaceBeerWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "transactionsRoot_starts_with", - "description": "All values starting with the given string.", + "name": "beers_none", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "PlaceBeerWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "transactionsRoot_not_starts_with", - "description": "All values not starting with the given string.", + "name": "Owner", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "transactionsRoot_ends_with", - "description": "All values ending with the given string.", + "name": "Letters_every", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "LetterWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "transactionsRoot_not_ends_with", - "description": "All values not ending with the given string.", + "name": "Letters_some", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "LetterWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "transactions_count", + "name": "Letters_none", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LetterWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PlaceBeerWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": "Logical AND on all given filters.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PlaceBeerWhereInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "OR", + "description": "Logical OR on all given filters.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PlaceBeerWhereInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PlaceBeerWhereInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "transactions_count_not", + "name": "id_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "transactions_count_in", + "name": "id_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -194614,7 +38858,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null } } @@ -194622,7 +38866,7 @@ "defaultValue": null }, { - "name": "transactions_count_not_in", + "name": "id_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -194632,7 +38876,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null } } @@ -194640,222 +38884,217 @@ "defaultValue": null }, { - "name": "transactions_count_lt", + "name": "id_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "transactions_count_lte", + "name": "id_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "transactions_count_gt", + "name": "id_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "transactions_count_gte", + "name": "id_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthBlockUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "hash", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "number", - "description": null, + "name": "id_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "difficulty", - "description": null, + "name": "id_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "totalDifficulty", - "description": null, + "name": "id_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "extraData", - "description": null, + "name": "id_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "gasLimit", - "description": null, + "name": "id_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "gasUsed", - "description": null, + "name": "id_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "mixHash", + "name": "price", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "nonce", - "description": null, + "name": "price_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "parentHash", - "description": null, + "name": "price_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "receiptsRoot", - "description": null, + "name": "price_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "sha3Uncles", - "description": null, + "name": "price_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "size", - "description": null, + "name": "price_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "stateRoot", - "description": null, + "name": "price_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "date", - "description": null, + "name": "price_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "transactionsRoot", + "name": "Place", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "PlaceWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "transactions_count", + "name": "Beer", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "BeerWhereInput", "ofType": null }, "defaultValue": null @@ -194867,496 +39106,597 @@ }, { "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateWithoutCreatedByDataInput", + "name": "BeerWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "name", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BeerWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "description", + "name": "OR", + "description": "Logical OR on all given filters.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BeerWhereInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BeerWhereInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "address", - "description": null, + "name": "id_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "type", - "description": null, + "name": "id_in", + "description": "All values that are contained in given list.", "type": { - "kind": "ENUM", - "name": "EthAccountType", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "source", - "description": null, + "name": "id_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "bytecode", - "description": null, + "name": "id_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "abi", - "description": null, + "name": "id_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Transaction", - "description": null, + "name": "id_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateOneWithoutAccountInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "IncomeTransactions", - "description": null, + "name": "id_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateManyWithoutReceiverInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "OutcomeTransactions", - "description": null, + "name": "id_contains", + "description": "All values containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateManyWithoutSenderInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "ContractSource", - "description": null, + "name": "id_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateOneWithoutAccountsInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "BlocksMined", - "description": null, + "name": "id_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockUpdateManyWithoutMinerInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "UserAuthed", - "description": null, + "name": "id_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutEthAccountAuthedInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Project", - "description": null, + "name": "id_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutEthAccountsInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Resources", - "description": null, + "name": "id_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutEthAccountInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateWithoutIncomeTransactionsDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", + "name": "createdAt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "createdAt_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "address", - "description": null, + "name": "createdAt_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "type", - "description": null, + "name": "createdAt_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "ENUM", - "name": "EthAccountType", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "source", - "description": null, + "name": "createdAt_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "bytecode", - "description": null, + "name": "createdAt_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "abi", - "description": null, + "name": "createdAt_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "createdAt_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutEthAccountsInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Transaction", + "name": "updatedAt", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateOneWithoutAccountInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "OutcomeTransactions", - "description": null, + "name": "updatedAt_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateManyWithoutSenderInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "ContractSource", - "description": null, + "name": "updatedAt_in", + "description": "All values that are contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateOneWithoutAccountsInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "BlocksMined", - "description": null, + "name": "updatedAt_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockUpdateManyWithoutMinerInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "UserAuthed", - "description": null, + "name": "updatedAt_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutEthAccountAuthedInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Project", - "description": null, + "name": "updatedAt_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutEthAccountsInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Resources", - "description": null, + "name": "updatedAt_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutEthAccountInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateWithoutOutcomeTransactionsDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", - "description": null, + "name": "updatedAt_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "description", + "name": "beer_id", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "address", - "description": null, + "name": "beer_id_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "type", - "description": null, + "name": "beer_id_in", + "description": "All values that are contained in given list.", "type": { - "kind": "ENUM", - "name": "EthAccountType", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "source", - "description": null, + "name": "beer_id_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "beer_id_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "bytecode", - "description": null, + "name": "beer_id_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "abi", - "description": null, + "name": "beer_id_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "beer_id_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutEthAccountsInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Transaction", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateOneWithoutAccountInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "IncomeTransactions", - "description": null, + "name": "name_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateManyWithoutReceiverInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ContractSource", - "description": null, + "name": "name_in", + "description": "All values that are contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateOneWithoutAccountsInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "BlocksMined", - "description": null, + "name": "name_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockUpdateManyWithoutMinerInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "UserAuthed", - "description": null, + "name": "name_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutEthAccountAuthedInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Project", - "description": null, + "name": "name_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutEthAccountsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Resources", - "description": null, + "name": "name_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutEthAccountInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateWithoutProjectDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", - "description": null, + "name": "name_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -195365,18 +39705,18 @@ "defaultValue": null }, { - "name": "description", - "description": null, + "name": "name_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "address", - "description": null, + "name": "name_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -195385,18 +39725,18 @@ "defaultValue": null }, { - "name": "type", - "description": null, + "name": "name_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "ENUM", - "name": "EthAccountType", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "source", - "description": null, + "name": "name_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -195405,8 +39745,8 @@ "defaultValue": null }, { - "name": "bytecode", - "description": null, + "name": "name_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -195415,109 +39755,114 @@ "defaultValue": null }, { - "name": "abi", - "description": null, + "name": "name_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "url_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutEthAccountsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Transaction", - "description": null, + "name": "url_name_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateOneWithoutAccountInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "IncomeTransactions", - "description": null, + "name": "url_name_in", + "description": "All values that are contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateManyWithoutReceiverInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "OutcomeTransactions", - "description": null, + "name": "url_name_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateManyWithoutSenderInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "ContractSource", - "description": null, + "name": "url_name_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateOneWithoutAccountsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "BlocksMined", - "description": null, + "name": "url_name_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockUpdateManyWithoutMinerInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "UserAuthed", - "description": null, + "name": "url_name_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutEthAccountAuthedInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Resources", - "description": null, + "name": "url_name_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutEthAccountInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateWithoutResourcesDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", - "description": null, + "name": "url_name_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -195526,18 +39871,18 @@ "defaultValue": null }, { - "name": "description", - "description": null, + "name": "url_name_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "address", - "description": null, + "name": "url_name_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -195546,18 +39891,18 @@ "defaultValue": null }, { - "name": "type", - "description": null, + "name": "url_name_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "ENUM", - "name": "EthAccountType", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "source", - "description": null, + "name": "url_name_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -195566,8 +39911,8 @@ "defaultValue": null }, { - "name": "bytecode", - "description": null, + "name": "url_name_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -195576,109 +39921,114 @@ "defaultValue": null }, { - "name": "abi", + "name": "description", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "description_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutEthAccountsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Transaction", - "description": null, + "name": "description_in", + "description": "All values that are contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateOneWithoutAccountInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "IncomeTransactions", - "description": null, + "name": "description_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateManyWithoutReceiverInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "OutcomeTransactions", - "description": null, + "name": "description_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateManyWithoutSenderInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ContractSource", - "description": null, + "name": "description_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateOneWithoutAccountsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "BlocksMined", - "description": null, + "name": "description_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockUpdateManyWithoutMinerInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "UserAuthed", - "description": null, + "name": "description_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutEthAccountAuthedInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Project", - "description": null, + "name": "description_contains", + "description": "All values containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutEthAccountsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateWithoutTransactionDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", - "description": null, + "name": "description_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -195687,18 +40037,18 @@ "defaultValue": null }, { - "name": "description", - "description": null, + "name": "description_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "address", - "description": null, + "name": "description_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -195707,18 +40057,18 @@ "defaultValue": null }, { - "name": "type", - "description": null, + "name": "description_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "ENUM", - "name": "EthAccountType", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "source", - "description": null, + "name": "description_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -195727,7 +40077,7 @@ "defaultValue": null }, { - "name": "bytecode", + "name": "country", "description": null, "type": { "kind": "SCALAR", @@ -195737,109 +40087,124 @@ "defaultValue": null }, { - "name": "abi", - "description": null, + "name": "country_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "country_in", + "description": "All values that are contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutEthAccountsInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "IncomeTransactions", - "description": null, + "name": "country_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateManyWithoutReceiverInput", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "country_lt", + "description": "All values less than the given value.", + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "OutcomeTransactions", - "description": null, + "name": "country_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateManyWithoutSenderInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ContractSource", - "description": null, + "name": "country_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateOneWithoutAccountsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "BlocksMined", - "description": null, + "name": "country_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockUpdateManyWithoutMinerInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "UserAuthed", - "description": null, + "name": "country_contains", + "description": "All values containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutEthAccountAuthedInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Project", - "description": null, + "name": "country_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutEthAccountsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Resources", - "description": null, + "name": "country_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutEthAccountInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateWithoutUserAuthedDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", - "description": null, + "name": "country_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -195848,18 +40213,18 @@ "defaultValue": null }, { - "name": "description", - "description": null, + "name": "country_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "address", - "description": null, + "name": "country_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -195868,18 +40233,18 @@ "defaultValue": null }, { - "name": "type", + "name": "image", "description": null, "type": { - "kind": "ENUM", - "name": "EthAccountType", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "source", - "description": null, + "name": "image_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", "name": "String", @@ -195888,8 +40253,44 @@ "defaultValue": null }, { - "name": "bytecode", - "description": null, + "name": "image_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "image_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "image_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -195898,389 +40299,300 @@ "defaultValue": null }, { - "name": "abi", - "description": null, + "name": "image_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "image_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutEthAccountsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Transaction", - "description": null, + "name": "image_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateOneWithoutAccountInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "IncomeTransactions", - "description": null, + "name": "image_contains", + "description": "All values containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateManyWithoutReceiverInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "OutcomeTransactions", - "description": null, + "name": "image_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateManyWithoutSenderInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ContractSource", - "description": null, + "name": "image_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateOneWithoutAccountsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "BlocksMined", - "description": null, + "name": "image_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockUpdateManyWithoutMinerInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Project", - "description": null, + "name": "image_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutEthAccountsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Resources", - "description": null, + "name": "image_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutEthAccountInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateWithWhereUniqueWithoutContractSourceInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "num_comments", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "data", - "description": null, + "name": "num_comments_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateWithoutContractSourceDataInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateWithWhereUniqueWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", - "description": null, + "name": "num_comments_in", + "description": "All values that are contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, "defaultValue": null }, { - "name": "data", - "description": null, + "name": "num_comments_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateWithoutCreatedByDataInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateWithWhereUniqueWithoutProjectInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", - "description": null, + "name": "num_comments_lt", + "description": "All values less than the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "data", - "description": null, + "name": "num_comments_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateWithoutProjectDataInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpsertWithWhereUniqueWithoutContractSourceInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", - "description": null, + "name": "num_comments_gt", + "description": "All values greater than the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpsertWithWhereUniqueWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", - "description": null, + "name": "num_comments_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpsertWithWhereUniqueWithoutProjectInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "num_photos", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthAccountWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthBlockCreateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "num_photos_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "hash", - "description": null, + "name": "num_photos_in", + "description": "All values that are contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, "defaultValue": null }, { - "name": "number", - "description": null, + "name": "num_photos_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, "defaultValue": null }, { - "name": "difficulty", - "description": null, + "name": "num_photos_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "totalDifficulty", - "description": null, + "name": "num_photos_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "extraData", - "description": null, + "name": "num_photos_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "gasLimit", - "description": null, + "name": "num_photos_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "gasUsed", + "name": "manufacturer", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "mixHash", - "description": null, + "name": "manufacturer_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", "name": "String", @@ -196289,8 +40601,44 @@ "defaultValue": null }, { - "name": "nonce", - "description": null, + "name": "manufacturer_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "manufacturer_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "manufacturer_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -196299,8 +40647,8 @@ "defaultValue": null }, { - "name": "parentHash", - "description": null, + "name": "manufacturer_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -196309,8 +40657,8 @@ "defaultValue": null }, { - "name": "receiptsRoot", - "description": null, + "name": "manufacturer_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -196319,8 +40667,8 @@ "defaultValue": null }, { - "name": "sha3Uncles", - "description": null, + "name": "manufacturer_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -196329,18 +40677,18 @@ "defaultValue": null }, { - "name": "size", - "description": null, + "name": "manufacturer_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "stateRoot", - "description": null, + "name": "manufacturer_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -196349,18 +40697,18 @@ "defaultValue": null }, { - "name": "date", - "description": null, + "name": "manufacturer_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "transactionsRoot", - "description": null, + "name": "manufacturer_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -196369,59 +40717,48 @@ "defaultValue": null }, { - "name": "transactions_count", - "description": null, + "name": "manufacturer_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Miner", - "description": null, + "name": "manufacturer_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutBlocksMinedInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Transactions", + "name": "region", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionCreateManyWithoutBlockInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Uncles", - "description": null, + "name": "region_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockCreateManyInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthTransactionCreateManyWithoutBlockInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "region_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -196429,28 +40766,17 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereUniqueInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthBlockCreateManyInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "region_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -196458,107 +40784,77 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthBlockWhereUniqueInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthBlockCreateOneWithoutTransactionsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "region_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockWhereUniqueInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthBlockCreateWithoutMinerInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "region_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "hash", - "description": null, + "name": "region_gt", + "description": "All values greater than the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "number", - "description": null, + "name": "region_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "difficulty", - "description": null, + "name": "region_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "totalDifficulty", - "description": null, + "name": "region_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "extraData", - "description": null, + "name": "region_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -196567,28 +40863,28 @@ "defaultValue": null }, { - "name": "gasLimit", - "description": null, + "name": "region_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "gasUsed", - "description": null, + "name": "region_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "mixHash", - "description": null, + "name": "region_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -196597,7 +40893,7 @@ "defaultValue": null }, { - "name": "nonce", + "name": "manufacture_years", "description": null, "type": { "kind": "SCALAR", @@ -196607,8 +40903,8 @@ "defaultValue": null }, { - "name": "parentHash", - "description": null, + "name": "manufacture_years_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", "name": "String", @@ -196617,8 +40913,44 @@ "defaultValue": null }, { - "name": "receiptsRoot", - "description": null, + "name": "manufacture_years_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "manufacture_years_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "manufacture_years_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -196627,8 +40959,8 @@ "defaultValue": null }, { - "name": "sha3Uncles", - "description": null, + "name": "manufacture_years_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -196637,18 +40969,18 @@ "defaultValue": null }, { - "name": "size", - "description": null, + "name": "manufacture_years_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "stateRoot", - "description": null, + "name": "manufacture_years_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -196657,18 +40989,18 @@ "defaultValue": null }, { - "name": "date", - "description": null, + "name": "manufacture_years_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "transactionsRoot", - "description": null, + "name": "manufacture_years_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -196677,137 +41009,154 @@ "defaultValue": null }, { - "name": "transactions_count", - "description": null, + "name": "manufacture_years_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Transactions", - "description": null, + "name": "manufacture_years_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionCreateManyWithoutBlockInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Uncles", - "description": null, + "name": "manufacture_years_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockCreateManyInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthBlockCreateWithoutTransactionsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "manufacture_years_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "hash", + "name": "container", "description": null, "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "container_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "container_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, "defaultValue": null }, { - "name": "number", - "description": null, + "name": "container_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, "defaultValue": null }, { - "name": "difficulty", - "description": null, + "name": "container_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "totalDifficulty", - "description": null, + "name": "container_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "extraData", - "description": null, + "name": "container_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "gasLimit", - "description": null, + "name": "container_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "gasUsed", + "name": "alcohol", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "mixHash", - "description": null, + "name": "alcohol_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", "name": "String", @@ -196816,8 +41165,44 @@ "defaultValue": null }, { - "name": "nonce", - "description": null, + "name": "alcohol_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "alcohol_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "alcohol_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -196826,8 +41211,8 @@ "defaultValue": null }, { - "name": "parentHash", - "description": null, + "name": "alcohol_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -196836,8 +41221,8 @@ "defaultValue": null }, { - "name": "receiptsRoot", - "description": null, + "name": "alcohol_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -196846,8 +41231,8 @@ "defaultValue": null }, { - "name": "sha3Uncles", - "description": null, + "name": "alcohol_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -196856,18 +41241,18 @@ "defaultValue": null }, { - "name": "size", - "description": null, + "name": "alcohol_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "stateRoot", - "description": null, + "name": "alcohol_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -196876,18 +41261,18 @@ "defaultValue": null }, { - "name": "date", - "description": null, + "name": "alcohol_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "transactionsRoot", - "description": null, + "name": "alcohol_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -196896,391 +41281,360 @@ "defaultValue": null }, { - "name": "transactions_count", - "description": null, + "name": "alcohol_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Miner", - "description": null, + "name": "alcohol_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutBlocksMinedInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Uncles", + "name": "wort_percent", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockCreateManyInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EthBlockPreviousValues", - "description": null, - "fields": [ + }, { - "name": "id", - "description": null, - "args": [], + "name": "wort_percent_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "createdAt", - "description": null, - "args": [], + "name": "wort_percent_in", + "description": "All values that are contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedAt", - "description": null, - "args": [], + "name": "wort_percent_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "hash", - "description": null, - "args": [], + "name": "wort_percent_lt", + "description": "All values less than the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "number", - "description": null, - "args": [], + "name": "wort_percent_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "difficulty", - "description": null, - "args": [], + "name": "wort_percent_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "totalDifficulty", - "description": null, - "args": [], + "name": "wort_percent_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "extraData", - "description": null, - "args": [], + "name": "wort_percent_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "gasLimit", - "description": null, - "args": [], + "name": "wort_percent_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "gasUsed", - "description": null, - "args": [], + "name": "wort_percent_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "mixHash", - "description": null, - "args": [], + "name": "wort_percent_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "nonce", - "description": null, - "args": [], + "name": "wort_percent_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "parentHash", - "description": null, - "args": [], + "name": "wort_percent_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "receiptsRoot", + "name": "components", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "sha3Uncles", - "description": null, - "args": [], + "name": "components_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "size", - "description": null, - "args": [], + "name": "components_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "components_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "components_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "stateRoot", - "description": null, - "args": [], + "name": "components_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "date", - "description": null, - "args": [], + "name": "components_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "transactionsRoot", - "description": null, - "args": [], + "name": "components_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "transactions_count", - "description": null, - "args": [], + "name": "components_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EthBlockSubscriptionPayload", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "mutation", - "description": null, - "args": [], + "name": "components_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "node", - "description": null, - "args": [], + "name": "components_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "OBJECT", - "name": "EthBlock", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedFields", - "description": null, - "args": [], + "name": "components_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "previousValues", + "name": "components_ends_with", + "description": "All values ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "components_not_ends_with", + "description": "All values not ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "bitter", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "EthBlockPreviousValues", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthBlockSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ + "defaultValue": null + }, { - "name": "AND", - "description": "Logical AND on all given filters.", + "name": "bitter_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "bitter_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -197288,8 +41642,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthBlockSubscriptionWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } } @@ -197297,8 +41651,8 @@ "defaultValue": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", + "name": "bitter_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -197306,8 +41660,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthBlockSubscriptionWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } } @@ -197315,8 +41669,68 @@ "defaultValue": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + "name": "bitter_lt", + "description": "All values less than the given value.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "bitter_lte", + "description": "All values less than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "bitter_gt", + "description": "All values greater than the given value.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "bitter_gte", + "description": "All values greater than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type_id_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type_id_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -197324,8 +41738,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthBlockSubscriptionWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } } @@ -197333,8 +41747,8 @@ "defaultValue": null }, { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", + "name": "type_id_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -197342,8 +41756,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "MutationType", + "kind": "SCALAR", + "name": "Int", "ofType": null } } @@ -197351,8 +41765,58 @@ "defaultValue": null }, { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", + "name": "type_id_lt", + "description": "All values less than the given value.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type_id_lte", + "description": "All values less than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type_id_gt", + "description": "All values greater than the given value.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type_id_gte", + "description": "All values greater than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "color", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "color_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", "name": "String", @@ -197361,8 +41825,8 @@ "defaultValue": null }, { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", + "name": "color_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -197379,8 +41843,8 @@ "defaultValue": null }, { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", + "name": "color_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -197397,29 +41861,8 @@ "defaultValue": null }, { - "name": "node", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthBlockUpdateDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "hash", - "description": null, + "name": "color_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -197428,38 +41871,38 @@ "defaultValue": null }, { - "name": "number", - "description": null, + "name": "color_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "difficulty", - "description": null, + "name": "color_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "totalDifficulty", - "description": null, + "name": "color_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "extraData", - "description": null, + "name": "color_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -197468,28 +41911,28 @@ "defaultValue": null }, { - "name": "gasLimit", - "description": null, + "name": "color_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "gasUsed", - "description": null, + "name": "color_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "mixHash", - "description": null, + "name": "color_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -197498,8 +41941,8 @@ "defaultValue": null }, { - "name": "nonce", - "description": null, + "name": "color_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -197508,8 +41951,8 @@ "defaultValue": null }, { - "name": "parentHash", - "description": null, + "name": "color_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -197518,68 +41961,84 @@ "defaultValue": null }, { - "name": "receiptsRoot", + "name": "is_request", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "sha3Uncles", - "description": null, + "name": "is_request_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "size", - "description": null, + "name": "is_request_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "stateRoot", - "description": null, + "name": "is_request_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "date", - "description": null, + "name": "is_request_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "transactionsRoot", - "description": null, + "name": "is_request_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "transactions_count", - "description": null, + "name": "is_request_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", "name": "Int", @@ -197588,49 +42047,38 @@ "defaultValue": null }, { - "name": "Miner", - "description": null, + "name": "is_request_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutBlocksMinedInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Transactions", + "name": "rating", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateManyWithoutBlockInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Uncles", - "description": null, + "name": "rating_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockUpdateManyInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateManyWithoutBlockInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "rating_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -197638,8 +42086,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereUniqueInput", + "kind": "SCALAR", + "name": "Float", "ofType": null } } @@ -197647,8 +42095,8 @@ "defaultValue": null }, { - "name": "set", - "description": null, + "name": "rating_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -197656,8 +42104,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereUniqueInput", + "kind": "SCALAR", + "name": "Float", "ofType": null } } @@ -197665,127 +42113,68 @@ "defaultValue": null }, { - "name": "disconnect", - "description": null, + "name": "rating_lt", + "description": "All values less than the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null }, { - "name": "updateMany", - "description": null, + "name": "rating_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateManyWithWhereNestedInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null }, { - "name": "deleteMany", - "description": null, + "name": "rating_gt", + "description": "All values greater than the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionScalarWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthBlockUpdateManyInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "rating_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthBlockWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null }, { - "name": "set", + "name": "add_user_id", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthBlockWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "disconnect", - "description": null, + "name": "add_user_id_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthBlockWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "updateMany", - "description": null, + "name": "add_user_id_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -197793,8 +42182,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthBlockUpdateManyWithWhereNestedInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } } @@ -197802,8 +42191,8 @@ "defaultValue": null }, { - "name": "deleteMany", - "description": null, + "name": "add_user_id_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -197811,38 +42200,17 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthBlockScalarWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthBlockUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "hash", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null }, { - "name": "number", - "description": null, + "name": "add_user_id_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", "name": "Int", @@ -197851,108 +42219,124 @@ "defaultValue": null }, { - "name": "difficulty", - "description": null, + "name": "add_user_id_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "totalDifficulty", - "description": null, + "name": "add_user_id_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "extraData", - "description": null, + "name": "add_user_id_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "gasLimit", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "gasUsed", - "description": null, + "name": "created_at_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "mixHash", - "description": null, + "name": "created_at_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "nonce", - "description": null, + "name": "created_at_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "parentHash", - "description": null, + "name": "created_at_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "receiptsRoot", - "description": null, + "name": "created_at_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "sha3Uncles", - "description": null, + "name": "created_at_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "size", - "description": null, + "name": "created_at_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", "name": "Int", @@ -197961,71 +42345,71 @@ "defaultValue": null }, { - "name": "stateRoot", + "name": "filtered", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "date", - "description": null, + "name": "filtered_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "transactionsRoot", + "name": "pasteurized", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "transactions_count", - "description": null, + "name": "pasteurized_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Miner", + "name": "places_every", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutBlocksMinedInput", + "name": "PlaceBeerWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "Transactions", + "name": "places_some", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateManyWithoutBlockInput", + "name": "PlaceBeerWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "Uncles", + "name": "places_none", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthBlockUpdateManyInput", + "name": "PlaceBeerWhereInput", "ofType": null }, "defaultValue": null @@ -198037,224 +42421,222 @@ }, { "kind": "INPUT_OBJECT", - "name": "EthBlockUpdateManyMutationInput", + "name": "LetterWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "hash", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LetterWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "number", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LetterWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "difficulty", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LetterWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "totalDifficulty", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "extraData", - "description": null, + "name": "id_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "gasLimit", - "description": null, + "name": "id_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "gasUsed", - "description": null, + "name": "id_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "mixHash", - "description": null, + "name": "id_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "nonce", - "description": null, + "name": "id_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "parentHash", - "description": null, + "name": "id_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "receiptsRoot", - "description": null, + "name": "id_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "sha3Uncles", - "description": null, + "name": "id_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "size", - "description": null, + "name": "id_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "stateRoot", - "description": null, + "name": "id_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "date", - "description": null, + "name": "id_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "transactionsRoot", - "description": null, + "name": "id_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "transactions_count", - "description": null, + "name": "id_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthBlockUpdateOneWithoutTransactionsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockWhereUniqueInput", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "disconnect", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthBlockUpdateWithoutMinerDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "hash", + "name": "email", "description": null, "type": { "kind": "SCALAR", @@ -198264,38 +42646,8 @@ "defaultValue": null }, { - "name": "number", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "difficulty", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "totalDifficulty", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "extraData", - "description": null, + "name": "email_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", "name": "String", @@ -198304,28 +42656,44 @@ "defaultValue": null }, { - "name": "gasLimit", - "description": null, + "name": "email_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "gasUsed", - "description": null, + "name": "email_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "mixHash", - "description": null, + "name": "email_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -198334,8 +42702,8 @@ "defaultValue": null }, { - "name": "nonce", - "description": null, + "name": "email_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -198344,8 +42712,8 @@ "defaultValue": null }, { - "name": "parentHash", - "description": null, + "name": "email_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -198354,8 +42722,8 @@ "defaultValue": null }, { - "name": "receiptsRoot", - "description": null, + "name": "email_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -198364,8 +42732,8 @@ "defaultValue": null }, { - "name": "sha3Uncles", - "description": null, + "name": "email_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -198374,18 +42742,18 @@ "defaultValue": null }, { - "name": "size", - "description": null, + "name": "email_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "stateRoot", - "description": null, + "name": "email_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -198394,18 +42762,18 @@ "defaultValue": null }, { - "name": "date", - "description": null, + "name": "email_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "transactionsRoot", - "description": null, + "name": "email_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -198414,48 +42782,17 @@ "defaultValue": null }, { - "name": "transactions_count", - "description": null, + "name": "email_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Transactions", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateManyWithoutBlockInput", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Uncles", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockUpdateManyInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthBlockUpdateWithoutTransactionsDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "hash", + "name": "subject", "description": null, "type": { "kind": "SCALAR", @@ -198465,38 +42802,54 @@ "defaultValue": null }, { - "name": "number", - "description": null, + "name": "subject_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "difficulty", - "description": null, + "name": "subject_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "totalDifficulty", - "description": null, + "name": "subject_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "extraData", - "description": null, + "name": "subject_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -198505,28 +42858,8 @@ "defaultValue": null }, { - "name": "gasLimit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gasUsed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mixHash", - "description": null, + "name": "subject_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -198535,8 +42868,8 @@ "defaultValue": null }, { - "name": "nonce", - "description": null, + "name": "subject_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -198545,8 +42878,8 @@ "defaultValue": null }, { - "name": "parentHash", - "description": null, + "name": "subject_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -198555,8 +42888,8 @@ "defaultValue": null }, { - "name": "receiptsRoot", - "description": null, + "name": "subject_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -198565,8 +42898,8 @@ "defaultValue": null }, { - "name": "sha3Uncles", - "description": null, + "name": "subject_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -198575,18 +42908,18 @@ "defaultValue": null }, { - "name": "size", - "description": null, + "name": "subject_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "stateRoot", - "description": null, + "name": "subject_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -198595,18 +42928,18 @@ "defaultValue": null }, { - "name": "date", - "description": null, + "name": "subject_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "transactionsRoot", - "description": null, + "name": "subject_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -198615,177 +42948,46 @@ "defaultValue": null }, { - "name": "transactions_count", + "name": "message", "description": null, "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Miner", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutBlocksMinedInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Uncles", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockUpdateManyInput", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthBlockUpdateWithWhereUniqueNestedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthBlockWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthBlockUpdateDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthBlockUpdateWithWhereUniqueWithoutMinerInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthBlockWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthBlockUpdateWithoutMinerDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthBlockUpsertWithWhereUniqueNestedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthBlockWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthBlockUpsertWithWhereUniqueWithoutMinerInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", - "description": null, + "name": "message_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "message_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthBlockWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateManyWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "message_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -198793,62 +42995,47 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceWhereUniqueInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateWithoutAccountsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "message_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "name", - "description": null, + "name": "message_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "message_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "source", - "description": null, + "name": "message_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -198857,88 +43044,58 @@ "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "message_contains", + "description": "All values containing the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutEthContractSourcesCreatedInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutEthContractSourcesCreatedInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "message_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "message_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "name", - "description": null, + "name": "message_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "message_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "source", - "description": null, + "name": "message_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -198947,128 +43104,84 @@ "defaultValue": null }, { - "name": "Accounts", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutContractSourceInput", + "kind": "ENUM", + "name": "LetterStatus", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EthContractSourcePreviousValues", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "createdAt", - "description": null, - "args": [], + "name": "status_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "ENUM", + "name": "LetterStatus", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedAt", - "description": null, - "args": [], + "name": "status_in", + "description": "All values that are contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "LetterStatus", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "name", - "description": null, - "args": [], + "name": "status_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "LetterStatus", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "description", + "name": "rank", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Json", + "name": "Int", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "source", - "description": null, - "args": [], + "name": "rank_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ + "defaultValue": null + }, { - "name": "AND", - "description": "Logical AND on all given filters.", + "name": "rank_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -199076,8 +43189,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceScalarWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } } @@ -199085,8 +43198,8 @@ "defaultValue": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", + "name": "rank_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -199094,8 +43207,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceScalarWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } } @@ -199103,45 +43216,87 @@ "defaultValue": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + "name": "rank_lt", + "description": "All values less than the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceScalarWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "id", + "name": "rank_lte", + "description": "All values less than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "rank_gt", + "description": "All values greater than the given value.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "rank_gte", + "description": "All values greater than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "deleteOnSend", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "id_not", + "name": "deleteOnSend_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "id_in", + "name": "replyTo", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "replyTo_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "replyTo_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -199151,7 +43306,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } } @@ -199159,7 +43314,7 @@ "defaultValue": null }, { - "name": "id_not_in", + "name": "replyTo_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -199169,7 +43324,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } } @@ -199177,127 +43332,127 @@ "defaultValue": null }, { - "name": "id_lt", + "name": "replyTo_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_lte", + "name": "replyTo_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_gt", + "name": "replyTo_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_gte", + "name": "replyTo_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_contains", + "name": "replyTo_contains", "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_not_contains", + "name": "replyTo_not_contains", "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_starts_with", + "name": "replyTo_starts_with", "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_not_starts_with", + "name": "replyTo_not_starts_with", "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_ends_with", + "name": "replyTo_ends_with", "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_not_ends_with", + "name": "replyTo_not_ends_with", "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "createdAt", + "name": "returnTo", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_not", + "name": "returnTo_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_in", + "name": "returnTo_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -199307,7 +43462,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null } } @@ -199315,7 +43470,7 @@ "defaultValue": null }, { - "name": "createdAt_not_in", + "name": "returnTo_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -199325,7 +43480,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null } } @@ -199333,86 +43488,326 @@ "defaultValue": null }, { - "name": "createdAt_lt", + "name": "returnTo_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_lte", + "name": "returnTo_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_gt", + "name": "returnTo_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_gte", + "name": "returnTo_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt", - "description": null, + "name": "returnTo_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", + "name": "returnTo_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", + "name": "returnTo_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "LIST", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "returnTo_not_starts_with", + "description": "All values not starting with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "returnTo_ends_with", + "description": "All values ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "returnTo_not_ends_with", + "description": "All values not ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Place", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PlaceWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "LetterStatus", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "Created", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Processing", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Sended", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Error", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "UserGroupOrderByInput", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UserGroup", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Users", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "UserOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "LIST", "name": null, @@ -199420,1202 +43815,945 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "OBJECT", + "name": "User", "ofType": null } } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "UserOrderByInput", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "username_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "username_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "email_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "email_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "phone_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "phone_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "showEmail_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "showEmail_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "showPhone_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "showPhone_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "password_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "password_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fullname_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fullname_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "image_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "image_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "address_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "address_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "active_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "active_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "activated_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "activated_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleted_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleted_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hidden_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hidden_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user_id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user_id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first_name_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first_name_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "middle_name_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "middle_name_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "last_name_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "last_name_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gender_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gender_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "birth_date_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "birth_date_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "country_id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "country_id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "region_id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + "name": "region_id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + "name": "city_id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + "name": "city_id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + "name": "status_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "status_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "timezone_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "name": "timezone_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "name": "language_id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "language_id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "num_blog_posts_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "num_blog_posts_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "last_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "last_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "created_at_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "created_at_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "notification_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "notification_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "icq_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "source", + "name": "icq_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "source_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "www_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "source_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "name": "www_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "source_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "name": "contact_email_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "source_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "contact_email_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "source_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "mobile_phone_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "source_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "mobile_phone_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "source_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "home_phone_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "source_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "home_phone_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "source_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "about_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "source_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "about_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "source_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "experience_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "source_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "experience_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "source_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EthContractSourceSubscriptionPayload", - "description": null, - "fields": [ + "name": "job_title_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "mutation", + "name": "job_title_DESC", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "work_place_ASC", "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "EthContractSource", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedFields", + "name": "work_place_DESC", "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "previousValues", + "name": "ip_ASC", "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "EthContractSourcePreviousValues", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null + "name": "ip_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null + "name": "confirmation_code_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null + "name": "confirmation_code_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } - }, - "defaultValue": null + "name": "rating_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "rating_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "name": "etherwallet_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "name": "etherwallet_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "node", + "name": "photo_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "name", + "name": "photo_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description", + "name": "sudo_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "source", + "name": "sudo_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyMutationInput", + "kind": "ENUM", + "name": "LogedInOrderByInput", "description": null, "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "name", + "name": "id_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description", + "name": "id_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "source", + "name": "createdAt_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "connect", + "name": "createdAt_DESC", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "set", + "name": "fake_ASC", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "disconnect", + "name": "fake_DESC", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updateMany", + "name": "updatedAt_ASC", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "deleteMany", + "name": "updatedAt_DESC", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithWhereNestedInput", + "kind": "OBJECT", + "name": "LogedIn", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "where", + "name": "id", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceScalarWhereInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", + "name": "createdAt", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyDataInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateWithoutAccountsDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "source", + "name": "fake", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "User", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutEthContractSourcesCreatedInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutEthContractSourcesCreatedInput", - "description": null, - "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": [ { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - }, - "defaultValue": null + "kind": "INTERFACE", + "name": "Node", + "ofType": null } ], - "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateWithoutCreatedByDataInput", + "kind": "ENUM", + "name": "FileOrderByInput", "description": null, "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "name", + "name": "id_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description", + "name": "id_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "source", + "name": "path_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Accounts", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutContractSourceInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateWithWhereUniqueWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", + "name": "path_DESC", "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", + "name": "name_ASC", "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateWithoutCreatedByDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpsertWithWhereUniqueWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "where", + "name": "name_DESC", "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthTransactionCreateWithoutAccountInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "id", + "name": "filename_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "chainId", + "name": "filename_DESC", "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mimetype_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "amount", + "name": "mimetype_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "input", + "name": "encoding_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "index", + "name": "encoding_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "address", + "name": "hash_ASC", "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "type", + "name": "hash_DESC", "description": null, - "type": { - "kind": "ENUM", - "name": "EthTransactionType", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "v", + "name": "size_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "r", + "name": "size_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "s", + "name": "updatedAt_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Sender", + "name": "updatedAt_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutOutcomeTransactionsInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Receiver", + "name": "createdAt_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutIncomeTransactionsInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Block", + "name": "createdAt_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockCreateOneWithoutTransactionsInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "EthTransactionCreateWithoutBlockInput", + "kind": "OBJECT", + "name": "File", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { "name": "id", "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "chainId", - "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "amount", + "name": "path", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "input", + "name": "name", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "index", + "name": "filename", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "address", + "name": "mimetype", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -200625,1529 +44763,1647 @@ "ofType": null } }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "EthTransactionType", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "v", + "name": "encoding", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "r", + "name": "hash", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "s", + "name": "size", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Sender", + "name": "CreatedBy", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutOutcomeTransactionsInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Receiver", + "name": "ImageResource", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutIncomeTransactionsInput", + "kind": "OBJECT", + "name": "Resource", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ { - "name": "Account", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutTransactionInput", - "ofType": null - }, - "defaultValue": null + "kind": "INTERFACE", + "name": "Node", + "ofType": null } ], - "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "EthTransactionCreateWithoutReceiverInput", + "kind": "OBJECT", + "name": "Resource", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { "name": "id", "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "chainId", - "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null } }, - "defaultValue": null - }, - { - "name": "amount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "input", + "name": "code", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "index", + "name": "createdAt", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "address", + "name": "updatedAt", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "type", "description": null, + "args": [], "type": { "kind": "ENUM", - "name": "EthTransactionType", + "name": "ResourceType", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "v", + "name": "name", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "r", + "name": "longtitle", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "s", + "name": "content", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Json", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Sender", + "name": "contentText", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutOutcomeTransactionsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Account", + "name": "published", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutTransactionInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Block", + "name": "deleted", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockCreateOneWithoutTransactionsInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthTransactionCreateWithoutSenderInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "id", + "name": "hidemenu", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "chainId", + "name": "searchable", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "amount", + "name": "uri", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "input", + "name": "isfolder", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "index", + "name": "CreatedBy", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Parent", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Resource", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "address", + "name": "Childs", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "ResourceOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Resource", + "ofType": null + } } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "type", + "name": "Image", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FileWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "ENUM", - "name": "EthTransactionType", + "kind": "OBJECT", + "name": "File", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "v", + "name": "PrismaProject", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Project", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "r", + "name": "rating", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "s", + "name": "positiveVotesCount", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Receiver", + "name": "negativeVotesCount", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutIncomeTransactionsInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Account", + "name": "neutralVotesCount", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutTransactionInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Block", + "name": "CommentTarget", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockCreateOneWithoutTransactionsInput", + "kind": "OBJECT", + "name": "Resource", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EthTransactionPreviousValues", - "description": null, - "fields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "id", + "name": "Comments", "description": null, - "args": [], + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "ResourceOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Resource", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Votes", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "VoteWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "VoteOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Vote", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt", + "name": "Tags", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceTagWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "ResourceTagOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceTag", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Json", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ResourceOrderByInput", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id_ASC", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedAt", + "name": "id_DESC", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "chainId", + "name": "code_ASC", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "amount", + "name": "code_DESC", "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "input", + "name": "createdAt_ASC", "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "index", + "name": "createdAt_DESC", "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "address", + "name": "updatedAt_ASC", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "type", + "name": "updatedAt_DESC", "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "EthTransactionType", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "v", + "name": "type_ASC", "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "r", + "name": "type_DESC", "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "s", + "name": "name_ASC", "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "chainId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null }, { - "name": "amount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "input", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "index", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", + "name": "name_DESC", "description": null, - "type": { - "kind": "ENUM", - "name": "EthTransactionType", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "v", + "name": "longtitle_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "r", + "name": "longtitle_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "s", + "name": "content_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Sender", + "name": "content_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutOutcomeTransactionsInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Receiver", + "name": "contentText_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutIncomeTransactionsInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Account", + "name": "contentText_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutTransactionInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Block", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockUpdateOneWithoutTransactionsInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "chainId", + "name": "published_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "amount", + "name": "published_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "input", + "name": "deleted_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "index", + "name": "deleted_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "address", + "name": "hidemenu_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "type", + "name": "hidemenu_DESC", "description": null, - "type": { - "kind": "ENUM", - "name": "EthTransactionType", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "v", + "name": "searchable_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "r", + "name": "searchable_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "s", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateWithoutAccountDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "chainId", + "name": "uri_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "amount", + "name": "uri_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "input", + "name": "isfolder_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "index", + "name": "isfolder_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "address", + "name": "rating_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "type", + "name": "rating_DESC", "description": null, - "type": { - "kind": "ENUM", - "name": "EthTransactionType", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "v", + "name": "positiveVotesCount_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "r", + "name": "positiveVotesCount_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "s", + "name": "negativeVotesCount_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Sender", + "name": "negativeVotesCount_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutOutcomeTransactionsInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Receiver", + "name": "neutralVotesCount_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutIncomeTransactionsInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Block", + "name": "neutralVotesCount_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockUpdateOneWithoutTransactionsInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateWithoutBlockDataInput", + "kind": "OBJECT", + "name": "Project", "description": null, - "fields": null, - "inputFields": [ - { - "name": "chainId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "input", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "index", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "EthTransactionType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "v", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, + "fields": [ { - "name": "r", + "name": "id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "s", + "name": "domain", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - }, - { - "name": "Sender", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutOutcomeTransactionsInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Receiver", + "name": "PrismaResources", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "ResourceOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutIncomeTransactionsInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Resource", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Account", + "name": "PrismaUsers", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "UserOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutTransactionInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateWithoutReceiverDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "chainId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "input", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "index", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "EthTransactionType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "v", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "r", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "s", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Sender", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutOutcomeTransactionsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Account", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutTransactionInput", - "ofType": null - }, - "defaultValue": null - }, + "inputFields": null, + "interfaces": [ { - "name": "Block", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockUpdateOneWithoutTransactionsInput", - "ofType": null - }, - "defaultValue": null + "kind": "INTERFACE", + "name": "Node", + "ofType": null } ], - "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateWithoutSenderDataInput", + "kind": "ENUM", + "name": "VoteOrderByInput", "description": null, "fields": null, - "inputFields": [ - { - "name": "chainId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "input", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "index", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "type", + "name": "id_ASC", "description": null, - "type": { - "kind": "ENUM", - "name": "EthTransactionType", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "v", + "name": "id_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "r", + "name": "createdAt_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "s", + "name": "createdAt_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Receiver", + "name": "updatedAt_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutIncomeTransactionsInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Account", + "name": "updatedAt_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutTransactionInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Block", + "name": "value_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthBlockUpdateOneWithoutTransactionsInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateWithWhereUniqueWithoutBlockInput", + "kind": "OBJECT", + "name": "Vote", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "where", + "name": "id", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereUniqueInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", + "name": "createdAt", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateWithoutBlockDataInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateWithWhereUniqueWithoutReceiverInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "where", + "name": "updatedAt", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereUniqueInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", + "name": "Resource", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateWithoutReceiverDataInput", + "kind": "OBJECT", + "name": "Resource", "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateWithWhereUniqueWithoutSenderInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "where", + "name": "User", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereUniqueInput", + "kind": "OBJECT", + "name": "User", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", + "name": "value", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpdateWithoutSenderDataInput", + "kind": "SCALAR", + "name": "Float", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null } ], - "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpsertWithWhereUniqueWithoutBlockInput", + "kind": "ENUM", + "name": "ResourceTagOrderByInput", "description": null, "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "where", + "name": "id_ASC", "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpsertWithWhereUniqueWithoutReceiverInput", + "kind": "OBJECT", + "name": "ResourceTag", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "where", + "name": "id", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereUniqueInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EthTransactionUpsertWithWhereUniqueWithoutSenderInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "where", + "name": "createdAt", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "EthTransactionWhereUniqueInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "FileConnection", - "description": "A connection to a list of items.", - "fields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "pageInfo", - "description": "Information to aid in pagination.", + "name": "updatedAt", + "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "PageInfo", + "kind": "SCALAR", + "name": "DateTime", "ofType": null } }, @@ -202155,62 +46411,69 @@ "deprecationReason": null }, { - "name": "edges", - "description": "A list of edges.", + "name": "status", + "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "FileEdge", - "ofType": null - } + "kind": "ENUM", + "name": "TagStatus", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "aggregate", + "name": "Resource", "description": null, - "args": [], + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "AggregateFile", + "name": "Resource", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "FileEdge", - "description": "An edge in a connection.", - "fields": [ + }, { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], + "name": "Tag", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TagWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "File", + "name": "Tag", "ofType": null } }, @@ -202218,15 +46481,26 @@ "deprecationReason": null }, { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], + "name": "CreatedBy", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "User", "ofType": null } }, @@ -202235,191 +46509,73 @@ } ], "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "FileCreateManyWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + "interfaces": [ { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null + "kind": "INTERFACE", + "name": "Node", + "ofType": null } ], - "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "FileCreateWithoutCreatedByInput", + "kind": "OBJECT", + "name": "Tag", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { "name": "id", "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path", - "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filename", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "mimetype", + "name": "createdAt", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "encoding", + "name": "updatedAt", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null } }, - "defaultValue": null - }, - { - "name": "hash", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "size", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Gallery", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GalleryCreateOneWithoutFilesInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ImageResource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutImageInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "FileCreateWithoutGalleryInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "path", + "name": "name", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -202429,255 +46585,241 @@ "ofType": null } }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filename", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "mimetype", + "name": "status", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "TagStatus", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "encoding", + "name": "Resources", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceTagWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "ResourceTagOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceTag", + "ofType": null + } } }, - "defaultValue": null - }, - { - "name": "hash", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "size", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "CreatedBy", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutFilesInput", + "kind": "OBJECT", + "name": "User", "ofType": null } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ { - "name": "ImageResource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutImageInput", - "ofType": null - }, - "defaultValue": null + "kind": "INTERFACE", + "name": "Node", + "ofType": null } ], - "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "FileCreateWithoutImageResourceInput", + "kind": "ENUM", + "name": "EthContractSourceOrderByInput", "description": null, "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "id", + "name": "id_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "path", + "name": "id_DESC", "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "createdAt_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "filename", + "name": "createdAt_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "mimetype", + "name": "updatedAt_ASC", "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "encoding", + "name": "updatedAt_DESC", "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "hash", + "name": "name_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "size", + "name": "name_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "rank", + "name": "description_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Gallery", + "name": "description_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GalleryCreateOneWithoutFilesInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "source_ASC", "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutFilesInput", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "source_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "FilePreviousValues", + "name": "EthContractSource", "description": null, "fields": [ { @@ -202729,7 +46871,7 @@ "deprecationReason": null }, { - "name": "path", + "name": "name", "description": null, "args": [], "type": { @@ -202745,19 +46887,19 @@ "deprecationReason": null }, { - "name": "name", + "name": "description", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Json", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "filename", + "name": "source", "description": null, "args": [], "type": { @@ -202769,94 +46911,26 @@ "deprecationReason": null }, { - "name": "mimetype", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "encoding", + "name": "CreatedBy", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hash", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "size", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rank", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "FileSubscriptionPayload", - "description": null, - "fields": [ - { - "name": "mutation", - "description": null, - "args": [], + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "MutationType", + "kind": "OBJECT", + "name": "User", "ofType": null } }, @@ -202864,21 +46938,80 @@ "deprecationReason": null }, { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "File", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedFields", + "name": "Accounts", "description": null, - "args": [], + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "EthAccountWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "EthAccountOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "LIST", "name": null, @@ -202886,429 +47019,384 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "EthAccount", "ofType": null } } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "previousValues", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "FilePreviousValues", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "FileSubscriptionWhereInput", + "kind": "ENUM", + "name": "EthAccountOrderByInput", "description": null, "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null + "name": "id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null + "name": "id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null + "name": "createdAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } - }, - "defaultValue": null + "name": "createdAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "updatedAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "name": "updatedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "name": "name_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "node", + "name": "name_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FileWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "FileUpdateDataInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "path", + "name": "description_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "description_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "filename", + "name": "address_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "mimetype", + "name": "address_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "encoding", + "name": "type_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "hash", + "name": "type_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "size", + "name": "source_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "rank", + "name": "source_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Gallery", + "name": "bytecode_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GalleryUpdateOneWithoutFilesInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "bytecode_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutFilesInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ImageResource", + "name": "abi_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutImageInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "abi_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "FileUpdateManyMutationInput", + "kind": "OBJECT", + "name": "EthAccount", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "path", + "name": "id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "createdAt", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "filename", + "name": "updatedAt", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "mimetype", + "name": "name", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "encoding", + "name": "description", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Json", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "hash", + "name": "address", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "size", + "name": "type", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "ENUM", + "name": "EthAccountType", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "rank", + "name": "CreatedBy", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "User", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "connect", + "name": "Transaction", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "args": [ + { + "name": "where", + "description": null, + "type": { "kind": "INPUT_OBJECT", - "name": "FileWhereUniqueInput", + "name": "EthTransactionWhereInput", "ofType": null - } + }, + "defaultValue": null } + ], + "type": { + "kind": "OBJECT", + "name": "EthTransaction", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "set", + "name": "IncomeTransactions", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "args": [ + { + "name": "where", + "description": null, + "type": { "kind": "INPUT_OBJECT", - "name": "FileWhereUniqueInput", + "name": "EthTransactionWhereInput", "ofType": null - } + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "EthTransactionOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, + ], "type": { "kind": "LIST", "name": null, @@ -203316,35 +47404,90 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileWhereUniqueInput", + "kind": "OBJECT", + "name": "EthTransaction", "ofType": null } } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updateMany", + "name": "OutcomeTransactions", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "args": [ + { + "name": "where", + "description": null, + "type": { "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithWhereNestedInput", + "name": "EthTransactionWhereInput", "ofType": null - } + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "EthTransactionOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, + ], "type": { "kind": "LIST", "name": null, @@ -203352,2128 +47495,2760 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileScalarWhereInput", + "kind": "OBJECT", + "name": "EthTransaction", "ofType": null } } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "FileUpdateWithoutCreatedByDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "path", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "source", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "filename", + "name": "bytecode", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "mimetype", + "name": "abi", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Json", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "encoding", + "name": "ContractSource", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "EthContractSourceWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "EthContractSource", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "hash", + "name": "BlocksMined", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "EthBlockWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "EthBlockOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EthBlock", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "size", + "name": "UserAuthed", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "User", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "rank", + "name": "balance", "description": null, + "args": [ + { + "name": "convert", + "description": null, + "type": { + "kind": "ENUM", + "name": "EthAmountConvert", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Gallery", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GalleryUpdateOneWithoutFilesInput", + "name": "Float", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ { - "name": "ImageResource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutImageInput", - "ofType": null - }, - "defaultValue": null + "kind": "INTERFACE", + "name": "Node", + "ofType": null } ], - "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "FileUpdateWithoutGalleryDataInput", + "kind": "OBJECT", + "name": "EthTransaction", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "path", + "name": "id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "createdAt", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "filename", + "name": "updatedAt", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "mimetype", + "name": "chainId", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "encoding", + "name": "amount", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "hash", + "name": "input", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - }, - { - "name": "size", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "rank", + "name": "index", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "Int", "ofType": null }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutFilesInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ImageResource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutImageInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "FileUpdateWithoutImageResourceDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "path", + "name": "Sender", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "EthAccountWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "EthAccount", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "Receiver", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "EthAccountWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "EthAccount", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "filename", + "name": "Account", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "EthAccountWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "EthAccount", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "mimetype", + "name": "address", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "encoding", + "name": "type", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "EthTransactionType", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "hash", + "name": "v", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "size", + "name": "r", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "rank", + "name": "s", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Gallery", + "name": "Block", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "EthBlockWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "GalleryUpdateOneWithoutFilesInput", + "kind": "OBJECT", + "name": "EthBlock", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutFilesInput", - "ofType": null - }, - "defaultValue": null + "kind": "INTERFACE", + "name": "Node", + "ofType": null } ], - "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "FileUpdateWithWhereUniqueWithoutCreatedByInput", + "kind": "OBJECT", + "name": "EthBlock", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "where", + "name": "id", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileWhereUniqueInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", + "name": "createdAt", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateWithoutCreatedByDataInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "FileUpdateWithWhereUniqueWithoutGalleryInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "where", + "name": "updatedAt", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileWhereUniqueInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", + "name": "hash", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateWithoutGalleryDataInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "FileUpsertWithWhereUniqueWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "where", + "name": "number", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileWhereUniqueInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "FileUpsertWithWhereUniqueWithoutGalleryInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "where", + "name": "difficulty", "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GalleryCreateWithoutFilesInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "id", + "name": "totalDifficulty", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "Float", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "extraData", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "gasLimit", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Resource", + "name": "gasUsed", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutGalleriesInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GalleryCreateWithoutResourceInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "id", + "name": "mixHash", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "nonce", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Files", + "name": "parentHash", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateManyWithoutGalleryInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "receiptsRoot", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GalleryUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "name", + "name": "sha3Uncles", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GalleryUpdateWithoutFilesDataInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "name", + "name": "size", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "stateRoot", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Resource", + "name": "date", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutGalleriesInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GalleryUpdateWithoutResourceDataInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "name", + "name": "Miner", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "EthAccountWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "EthAccount", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Files", + "name": "Transactions", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "EthTransactionWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "EthTransactionOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithoutGalleryInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EthTransaction", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "transactionsRoot", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GalleryUpdateWithWhereUniqueWithoutResourceInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "where", + "name": "transactions_count", "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GalleryWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", + "name": "Uncles", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "EthBlockWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "EthBlockOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "GalleryUpdateWithoutResourceDataInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EthBlock", + "ofType": null + } } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GalleryUpsertWithWhereUniqueWithoutResourceInput", - "description": null, - "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": [ { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GalleryWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null + "kind": "INTERFACE", + "name": "Node", + "ofType": null } ], - "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "GameCreateWithoutChildsInput", + "kind": "ENUM", + "name": "EthTransactionOrderByInput", "description": null, "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "id", + "name": "id_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "id_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "start_date", + "name": "createdAt_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "end_date", + "name": "createdAt_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "sequence", + "name": "updatedAt_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "updatedAt_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Tourney", + "name": "chainId_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TourneyCreateOneWithoutGamesInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Users", + "name": "chainId_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Teams", + "name": "amount_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Parent", + "name": "amount_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameCreateOneWithoutChildsInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Results", + "name": "input_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameResultCreateManyWithoutGameInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "input_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "index_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "index_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "address_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "address_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "v_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "v_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "r_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "r_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "s_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "s_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "GameCreateWithoutParentInput", + "kind": "ENUM", + "name": "EthBlockOrderByInput", "description": null, "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hash_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hash_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "number_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "number_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "difficulty_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "difficulty_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalDifficulty_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalDifficulty_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "extraData_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "extraData_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gasLimit_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gasLimit_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gasUsed_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gasUsed_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mixHash_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mixHash_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nonce_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nonce_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parentHash_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parentHash_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "receiptsRoot_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "receiptsRoot_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sha3Uncles_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "id", + "name": "sha3Uncles_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "size_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "start_date", + "name": "size_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "end_date", + "name": "stateRoot_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "sequence", + "name": "stateRoot_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "date_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Tourney", + "name": "date_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TourneyCreateOneWithoutGamesInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Users", + "name": "transactionsRoot_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Teams", + "name": "transactionsRoot_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Childs", + "name": "transactions_count_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameCreateManyWithoutParentInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Results", + "name": "transactions_count_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameResultCreateManyWithoutGameInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "GameCreateWithoutResultsInput", + "kind": "ENUM", + "name": "EthAmountConvert", "description": null, "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "name", + "name": "wei", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "start_date", + "name": "Kwei", "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "end_date", + "name": "Mwei", "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "sequence", + "name": "Gwei", "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "nano", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Tourney", + "name": "ether", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TourneyCreateOneWithoutGamesInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Users", + "name": "kether", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Teams", + "name": "mether", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Parent", + "name": "gether", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameCreateOneWithoutChildsInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Childs", + "name": "tether", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameCreateManyWithoutParentInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "GameCreateWithoutTourneyInput", + "kind": "ENUM", + "name": "ChatRoomOrderByInput", "description": null, "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "name", + "name": "id_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "start_date", + "name": "id_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "end_date", + "name": "createdAt_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "sequence", + "name": "createdAt_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "updatedAt_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Users", + "name": "updatedAt_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Teams", + "name": "name_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Parent", + "name": "name_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameCreateOneWithoutChildsInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Childs", + "name": "description_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameCreateManyWithoutParentInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Results", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameResultCreateManyWithoutGameInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GameResultCreateWithoutGameInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", + "name": "description_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "date", + "name": "image_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "image_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "value", + "name": "code_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "code_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "User", + "name": "isPublic_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Team", + "name": "isPublic_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateOneInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "GameResultUpdateManyMutationInput", + "kind": "OBJECT", + "name": "ChatRoom", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "date", + "name": "id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "createdAt", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "value", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GameResultUpdateWithoutGameDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "date", + "name": "updatedAt", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "name", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "value", + "name": "description", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "image", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "User", + "name": "code", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Team", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GameResultUpdateWithWhereUniqueWithoutGameInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", + "name": "Members", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "UserOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameResultWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", + "name": "CreatedBy", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameResultUpdateWithoutGameDataInput", + "kind": "OBJECT", + "name": "User", "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GameResultUpsertWithWhereUniqueWithoutGameInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "where", + "name": "Messages", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "ChatMessageOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameResultWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChatMessage", + "ofType": null + } } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GameUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "start_date", + "name": "isPublic", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Boolean", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "end_date", + "name": "Invitations", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomInvitationWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "ChatRoomInvitationOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChatRoomInvitation", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "sequence", + "name": "CallRequests", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CallRequestWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "CallRequestOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CallRequest", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null } ], - "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "GameUpdateWithoutChildsDataInput", + "kind": "ENUM", + "name": "ChatMessageOrderByInput", "description": null, "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "name", + "name": "id_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "start_date", + "name": "id_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "end_date", + "name": "createdAt_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "sequence", + "name": "createdAt_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "updatedAt_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Tourney", + "name": "updatedAt_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TourneyUpdateOneWithoutGamesInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Users", + "name": "content_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Teams", + "name": "content_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Parent", + "name": "contentText_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameUpdateOneWithoutChildsInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Results", + "name": "contentText_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameResultUpdateManyWithoutGameInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "GameUpdateWithoutParentDataInput", + "kind": "OBJECT", + "name": "ChatMessage", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "name", + "name": "id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "start_date", + "name": "createdAt", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "end_date", + "name": "updatedAt", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "sequence", + "name": "content", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "name": "Json", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Tourney", + "name": "contentText", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TourneyUpdateOneWithoutGamesInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Users", + "name": "CreatedBy", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyInput", + "kind": "OBJECT", + "name": "User", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Teams", + "name": "Room", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyInput", + "kind": "OBJECT", + "name": "ChatRoom", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Childs", + "name": "ReadedBy", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "ChatMessageReadedOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "GameUpdateManyWithoutParentInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChatMessageReaded", + "ofType": null + } + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ { - "name": "Results", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameResultUpdateManyWithoutGameInput", - "ofType": null - }, - "defaultValue": null + "kind": "INTERFACE", + "name": "Node", + "ofType": null } ], - "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "GameUpdateWithoutResultsDataInput", + "kind": "ENUM", + "name": "ChatMessageReadedOrderByInput", "description": null, "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "name", + "name": "id_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "start_date", + "name": "id_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "end_date", + "name": "createdAt_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "sequence", + "name": "createdAt_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "updatedAt_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Tourney", + "name": "updatedAt_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TourneyUpdateOneWithoutGamesInput", - "ofType": null - }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ChatMessageReaded", + "description": null, + "fields": [ { - "name": "Users", + "name": "id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Teams", + "name": "createdAt", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Parent", + "name": "Message", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "GameUpdateOneWithoutChildsInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChatMessage", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Childs", + "name": "User", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "GameUpdateManyWithoutParentInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null } ], - "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "GameUpdateWithoutTourneyDataInput", + "kind": "ENUM", + "name": "ChatRoomInvitationOrderByInput", "description": null, "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "start_date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "end_date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sequence", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "CreatedBy", + "name": "id_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Users", + "name": "id_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Teams", + "name": "createdAt_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Parent", + "name": "createdAt_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameUpdateOneWithoutChildsInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Childs", + "name": "updatedAt_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameUpdateManyWithoutParentInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Results", + "name": "updatedAt_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GameResultUpdateManyWithoutGameInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "GameUpdateWithWhereUniqueWithoutParentInput", + "kind": "OBJECT", + "name": "ChatRoomInvitation", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "where", + "name": "id", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameWhereUniqueInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", + "name": "createdAt", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameUpdateWithoutParentDataInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GameUpdateWithWhereUniqueWithoutTourneyInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "where", + "name": "updatedAt", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameWhereUniqueInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", + "name": "CreatedBy", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameUpdateWithoutTourneyDataInput", + "kind": "OBJECT", + "name": "User", "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GameUpsertWithWhereUniqueWithoutParentInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "where", + "name": "User", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameWhereUniqueInput", + "kind": "OBJECT", + "name": "User", "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GameUpsertWithWhereUniqueWithoutTourneyInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "where", + "name": "ChatRoom", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "GameWhereUniqueInput", + "kind": "OBJECT", + "name": "ChatRoom", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Notice", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NoticeWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Notice", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null } ], - "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "ImportConnection", - "description": "A connection to a list of items.", + "name": "Notice", + "description": null, "fields": [ { - "name": "pageInfo", - "description": "Information to aid in pagination.", + "name": "id", + "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "PageInfo", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -205481,62 +50256,267 @@ "deprecationReason": null }, { - "name": "edges", - "description": "A list of edges.", + "name": "createdAt", + "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ImportEdge", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "aggregate", + "name": "type", "description": null, "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "NoticeType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "User", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "AggregateImport", + "name": "User", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "CreatedBy", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ChatMessage", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ChatMessage", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ChatRoomInvitation", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomInvitationWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ChatRoomInvitation", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, + { + "kind": "ENUM", + "name": "CallRequestOrderByInput", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "called_descriptions_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "called_descriptions_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "caller_descriptions_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "caller_descriptions_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "startedAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "startedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "endedAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "endedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, { "kind": "OBJECT", - "name": "ImportEdge", - "description": "An edge in a connection.", + "name": "CallRequest", + "description": null, "fields": [ { - "name": "node", - "description": "The item at the end of the edge.", + "name": "id", + "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Import", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -205544,347 +50524,220 @@ "deprecationReason": null }, { - "name": "cursor", - "description": "A cursor for use in pagination.", + "name": "called_descriptions", + "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Json", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ImportCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null }, { - "name": "name", + "name": "caller_descriptions", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Json", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "status", "description": null, + "args": [], "type": { "kind": "ENUM", - "name": "ImportStatus", + "name": "CallRequestStatus", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Logs", + "name": "startedAt", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "LogCreateManyWithoutImportInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "endedAt", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutImportsInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LogCreateManyWithoutImportInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "connect", + "name": "Called", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "args": [ + { + "name": "where", + "description": null, + "type": { "kind": "INPUT_OBJECT", - "name": "LogWhereUniqueInput", + "name": "UserWhereInput", "ofType": null - } + }, + "defaultValue": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LogWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, + ], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutImportsInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "connect", + "name": "Caller", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", + "kind": "OBJECT", + "name": "User", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ImportCreateManyWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "connect", + "name": "Room", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "args": [ + { + "name": "where", + "description": null, + "type": { "kind": "INPUT_OBJECT", - "name": "ImportWhereUniqueInput", + "name": "ChatRoomWhereInput", "ofType": null - } + }, + "defaultValue": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ImportWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, + ], "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "ChatRoom", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ImportCreateOneWithoutLogsInput", - "description": null, - "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": [ { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ImportWhereUniqueInput", - "ofType": null - }, - "defaultValue": null + "kind": "INTERFACE", + "name": "Node", + "ofType": null } ], - "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "ImportCreateWithoutCreatedByInput", + "kind": "ENUM", + "name": "NoticeOrderByInput", "description": null, "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "id", + "name": "id_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "id_DESC", "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "status", + "name": "createdAt_ASC", "description": null, - "type": { - "kind": "ENUM", - "name": "ImportStatus", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Logs", + "name": "createdAt_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LogCreateManyWithoutImportInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ImportCreateWithoutLogsInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "id", + "name": "type_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "type_DESC", "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "status", + "name": "updatedAt_ASC", "description": null, - "type": { - "kind": "ENUM", - "name": "ImportStatus", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "updatedAt_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutImportsInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { "kind": "ENUM", - "name": "ImportOrderByInput", + "name": "NotificationTypeOrderByInput", "description": null, "fields": null, "inputFields": null, @@ -205939,13 +50792,25 @@ "deprecationReason": null }, { - "name": "status_ASC", + "name": "code_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "status_DESC", + "name": "code_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "comment_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "comment_DESC", "description": null, "isDeprecated": false, "deprecationReason": null @@ -205955,7 +50820,7 @@ }, { "kind": "OBJECT", - "name": "ImportPreviousValues", + "name": "NotificationType", "description": null, "fields": [ { @@ -206023,72 +50888,104 @@ "deprecationReason": null }, { - "name": "status", + "name": "code", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ImportStatus", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ImportScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", - "description": "Logical AND on all given filters.", + "name": "comment", + "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ImportScalarWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "name": "Users", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { "kind": "INPUT_OBJECT", - "name": "ImportScalarWhereInput", + "name": "UserWhereInput", "ofType": null - } + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "UserOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + ], "type": { "kind": "LIST", "name": null, @@ -206096,594 +50993,342 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ImportScalarWhereInput", + "kind": "OBJECT", + "name": "User", "ofType": null } } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "id", + "name": "CreatedBy", "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", "ofType": null - } + }, + "defaultValue": null } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "OBJECT", + "name": "User", + "ofType": null } }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "TagOrderByInput", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "name": "id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "name": "id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "name": "createdAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "name": "createdAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "name": "updatedAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "name": "updatedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "createdAt", + "name": "name_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + "name": "name_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "createdAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null + "name": "status_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, + "name": "status_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ProjectOrderByInput", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + "name": "id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + "name": "id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "createdAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + "name": "domain_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + "name": "domain_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedAt", + "name": "updatedAt_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + "name": "updatedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null + "name": "createdAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, + "name": "createdAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "TopicOrderByInput", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + "name": "id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + "name": "id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + "name": "topic_id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + "name": "topic_id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "updatedAt_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "updatedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "name": "createdAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "name": "createdAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "created_at_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "created_at_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "name_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "name_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "editor_content_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "editor_content_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "url_name_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "url_name_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "type_id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "type_id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "status", + "name": "published_ASC", "description": null, - "type": { - "kind": "ENUM", - "name": "ImportStatus", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "status_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "ENUM", - "name": "ImportStatus", - "ofType": null - }, - "defaultValue": null + "name": "published_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "status_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ImportStatus", - "ofType": null - } - } - }, - "defaultValue": null + "name": "description_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "status_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ImportStatus", - "ofType": null - } - } - }, - "defaultValue": null + "name": "description_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "ImportSubscriptionPayload", + "name": "Topic", "description": null, "fields": [ { - "name": "mutation", + "name": "id", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "MutationType", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -206691,738 +51336,853 @@ "deprecationReason": null }, { - "name": "node", + "name": "topic_id", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "Import", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedFields", + "name": "updatedAt", "description": null, "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "previousValues", + "name": "createdAt", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "ImportPreviousValues", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ImportSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", - "description": "Logical AND on all given filters.", + "name": "created_at", + "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ImportSubscriptionWhereInput", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "name": "created_by", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { "kind": "INPUT_OBJECT", - "name": "ImportSubscriptionWhereInput", + "name": "UserWhereInput", "ofType": null - } + }, + "defaultValue": null } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ImportSubscriptionWhereInput", - "ofType": null - } + "kind": "OBJECT", + "name": "User", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", + "name": "name", + "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", + "name": "editor_content", + "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Json", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", + "name": "url_name", + "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", + "name": "type_id", + "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "node", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ImportWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ImportUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", + "name": "published", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "status", + "name": "description", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "ImportStatus", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Logs", + "name": "uri", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "LogUpdateManyWithoutImportInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutImportsInput", - "ofType": null - }, - "defaultValue": null + "kind": "INTERFACE", + "name": "Node", + "ofType": null } ], - "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "LogUpdateManyWithoutImportInput", + "kind": "ENUM", + "name": "CommentOrderByInput", "description": null, "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "connect", + "name": "id_ASC", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "set", + "name": "id_DESC", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "disconnect", + "name": "createdAt_ASC", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updateMany", + "name": "createdAt_DESC", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "deleteMany", + "name": "updatedAt_ASC", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "comment_id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "comment_id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "object_id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "object_id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "editor_content_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "editor_content_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_checked_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_checked_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "LogUpdateManyWithWhereNestedInput", + "kind": "OBJECT", + "name": "Comment", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "where", + "name": "id", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogScalarWhereInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", + "name": "createdAt", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogUpdateManyDataInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LogScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + "name": "updatedAt", + "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogScalarWhereInput", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "id", + "name": "comment_id", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "id_not", - "description": "All values that are not equal to given value.", + "name": "object_id", + "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "id_in", - "description": "All values that are contained in given list.", + "name": "type_id", + "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "id_not_in", - "description": "All values that are not contained in given list.", + "name": "editor_content", + "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "Json", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "id_lt", - "description": "All values less than the given value.", + "name": "is_checked", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "id_lte", - "description": "All values less than or equal the given value.", + "name": "name", + "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "id_gt", - "description": "All values greater than the given value.", + "name": "created_by", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "User", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "id_gte", - "description": "All values greater than or equal the given value.", + "name": "parent", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "ID", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "id_contains", - "description": "All values containing the given string.", + "name": "uri", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "UserTarifOrderByInput", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "name": "id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "name": "createdAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "name": "createdAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "name": "dateTill_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "name": "dateTill_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "createdAt", + "name": "updatedAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UserTarif", + "description": null, + "fields": [ + { + "name": "id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", + "name": "User", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "createdAt_in", - "description": "All values that are contained in given list.", + "name": "Tarif", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TarifWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "OBJECT", + "name": "Tarif", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", + "name": "createdAt", + "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "createdAt_lt", - "description": "All values less than the given value.", + "name": "dateTill", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "DateTime", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Tarif", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "createdAt_gt", - "description": "All values greater than the given value.", + "name": "name", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", + "name": "active", + "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Boolean", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedAt", + "name": "maxPriceItems", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", + "name": "price", + "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "name": "UserTarifs", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserTarifWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "UserTarifOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null - } + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", + ], "type": { "kind": "LIST", "name": null, @@ -207430,77 +52190,190 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "OBJECT", + "name": "UserTarif", "ofType": null } } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedAt_lt", - "description": "All values less than the given value.", + "name": "allowIcon", + "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Boolean", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", + "name": "allowBanner", + "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Boolean", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Account", + "description": null, + "fields": [ { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", + "name": "id", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "level", + "name": "balance", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "LogLevel", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "level_not", - "description": "All values that are not equal to given value.", + "name": "User", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "ENUM", - "name": "LogLevel", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "level_in", - "description": "All values that are contained in given list.", + "name": "Transactions", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TransactionWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "TransactionOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "LIST", "name": null, @@ -207508,1225 +52381,1093 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "LogLevel", + "kind": "OBJECT", + "name": "Transaction", "ofType": null } } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "TransactionOrderByInput", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "level_not_in", - "description": "All values that are not contained in given list.", + "name": "id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "amount_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "amount_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Transaction", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "LogLevel", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "objectType", + "name": "createdAt", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "objectType_not", - "description": "All values that are not equal to given value.", + "name": "amount", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "objectType_in", - "description": "All values that are contained in given list.", + "name": "Account", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "OBJECT", + "name": "Account", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "objectType_not_in", - "description": "All values that are not contained in given list.", + "name": "CreatedBy", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "OBJECT", + "name": "User", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "PlaceOrderByInput", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "objectType_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "name": "id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "objectType_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "name": "updatedAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "objectType_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "name": "updatedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "objectType_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "name": "createdAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "objectType_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "name": "createdAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "objectType_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "name": "place_id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "objectType_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "name": "place_id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "objectType_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "name": "name_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "objectType_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "name": "name_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "objectType_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "name": "description_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "message", + "name": "description_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "message_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "address_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "message_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "name": "address_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "message_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "name": "lng_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "message_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "lng_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "message_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "lat_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "message_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "lat_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "message_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "website_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "message_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "website_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "message_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "phone_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "message_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "phone_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "message_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "work_hours_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "message_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "work_hours_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "message_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "metro_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "stack", + "name": "metro_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "stack_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "content_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "stack_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "name": "content_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "stack_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "name": "schedules_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "stack_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "schedules_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "stack_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "url_name_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "stack_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "url_name_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "stack_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "image_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "stack_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "image_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "stack_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "gallery_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "stack_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "gallery_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "stack_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "is_bar_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "stack_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "is_bar_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "stack_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LogUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ + "name": "is_shop_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "level", + "name": "is_shop_DESC", "description": null, - "type": { - "kind": "ENUM", - "name": "LogLevel", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_brewery_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_brewery_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "active_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "active_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "email_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "objectType", + "name": "email_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "message", + "name": "best_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "stack", + "name": "best_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutImportsInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "connect", + "name": "is_request_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "disconnect", + "name": "is_request_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyDataInput", + "kind": "OBJECT", + "name": "Place", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "name", + "name": "minPrice", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "status", + "name": "maxPrice", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "ImportStatus", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "name", + "name": "uri", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "ImportStatus", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", + "name": "id", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ImportWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "set", + "name": "updatedAt", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ImportWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "disconnect", + "name": "createdAt", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ImportWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updateMany", + "name": "place_id", "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithWhereNestedInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ImportScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", + "name": "name", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ImportScalarWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", + "name": "description", "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyDataInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ImportUpdateOneWithoutLogsInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "connect", + "name": "address", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ImportWhereUniqueInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "disconnect", + "name": "lng", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ImportUpdateWithoutCreatedByDataInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "name", + "name": "lat", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "status", + "name": "website", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "ImportStatus", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Logs", + "name": "phone", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "LogUpdateManyWithoutImportInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ImportUpdateWithoutLogsDataInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "name", + "name": "work_hours", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "status", + "name": "metro", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "ImportStatus", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "content", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutImportsInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ImportUpdateWithWhereUniqueWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "where", + "name": "schedules", "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ImportWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Json", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", + "name": "url_name", "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ImportUpdateWithoutCreatedByDataInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ImportUpsertWithWhereUniqueWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "where", + "name": "image", "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ImportWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "InventoryConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "edges", - "description": "A list of edges.", + "name": "gallery", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "InventoryEdge", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Json", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "aggregate", + "name": "is_bar", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateInventory", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "InventoryEdge", - "description": "An edge in a connection.", - "fields": [ + }, { - "name": "node", - "description": "The item at the end of the edge.", + "name": "is_shop", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Inventory", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "cursor", - "description": "A cursor for use in pagination.", + "name": "is_brewery", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "InventoryCreateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "active", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "Boolean", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "cursor", + "name": "email", "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", + "name": "beers", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PlaceBeerWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "PlaceBeerOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PlaceBeer", + "ofType": null + } } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "player", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PlayerCreateOneWithoutInventoryInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PlayerCreateOneWithoutInventoryInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", + "name": "Owner", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "PlayerWhereUniqueInput", + "kind": "OBJECT", + "name": "User", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "InventoryCreateOneWithoutPlayerInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "connect", + "name": "Letters", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LetterWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "LetterOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "InventoryWhereUniqueInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Letter", + "ofType": null + } + } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "InventoryCreateWithoutPlayerInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "id", + "name": "best", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "Boolean", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "cursor", + "name": "is_request", "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "INTERFACE", + "name": "Node", + "ofType": null } ], - "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "ENUM", - "name": "InventoryOrderByInput", + "name": "PlaceBeerOrderByInput", "description": null, "fields": null, "inputFields": null, @@ -208745,25 +53486,37 @@ "deprecationReason": null }, { - "name": "cursor_ASC", + "name": "price_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "price_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cursor_DESC", + "name": "updatedAt_DESC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "data_ASC", + "name": "createdAt_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "data_DESC", + "name": "createdAt_DESC", "description": null, "isDeprecated": false, "deprecationReason": null @@ -208773,7 +53526,7 @@ }, { "kind": "OBJECT", - "name": "InventoryPreviousValues", + "name": "PlaceBeer", "description": null, "fields": [ { @@ -208793,15 +53546,38 @@ "deprecationReason": null }, { - "name": "cursor", + "name": "price", "description": null, "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Place", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PlaceWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "Place", "ofType": null } }, @@ -208809,15 +53585,26 @@ "deprecationReason": null }, { - "name": "data", + "name": "Beer", "description": null, - "args": [], + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BeerWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Beer", "ofType": null } }, @@ -208826,586 +53613,456 @@ } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "InventorySubscriptionPayload", + "name": "Beer", "description": null, "fields": [ { - "name": "mutation", + "name": "container_str", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "uri", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "Inventory", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedFields", + "name": "id", "description": null, "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "previousValues", + "name": "createdAt", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "InventoryPreviousValues", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "InventorySubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "InventorySubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "InventorySubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "InventorySubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", - "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", + "name": "updatedAt", + "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "node", + "name": "beer_id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "InventoryWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "InventoryUpdateInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "cursor", + "name": "name", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", + "name": "url_name", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "player", + "name": "description", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "PlayerUpdateOneWithoutInventoryInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PlayerUpdateOneWithoutInventoryInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "connect", + "name": "editor_content", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "PlayerWhereUniqueInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "disconnect", + "name": "country", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "InventoryUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "cursor", + "name": "image", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", + "name": "num_comments", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "InventoryUpdateWithoutPlayerDataInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "cursor", + "name": "num_photos", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", + "name": "manufacturer", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LetsadsSmsMessageStatusConnection", - "description": "A connection to a list of items.", - "fields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "pageInfo", - "description": "Information to aid in pagination.", + "name": "region", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "edges", - "description": "A list of edges.", + "name": "manufacture_years", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LetsadsSmsMessageStatusEdge", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "aggregate", + "name": "container", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateLetsadsSmsMessageStatus", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LetsadsSmsMessageStatusEdge", - "description": "An edge in a connection.", - "fields": [ + }, { - "name": "node", - "description": "The item at the end of the edge.", + "name": "alcohol", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LetsadsSmsMessageStatus", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "cursor", - "description": "A cursor for use in pagination.", + "name": "wort_percent", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusCreateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "components", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "bitter", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "LetsadsSmsMessageStatusEnum", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description", + "name": "type_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "color", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "errorCode", + "name": "is_request", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "LetsadsSmsMessageStatusErrorCodeEnum", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "SmsMessage", + "name": "rating", "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SmsMessageCreateOneWithoutStatusInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Items", + "name": "add_user_id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemCreateManyWithoutStatusInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SmsMessageCreateOneWithoutStatusInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "connect", + "name": "created_at", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "SmsMessageWhereUniqueInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SmsMessageWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "id", + "name": "gallery", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "Json", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemCreateManyWithoutStatusInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "connect", + "name": "places", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PlaceBeerWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "PlaceBeerOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "LIST", "name": null, @@ -209413,212 +54070,209 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemWhereUniqueInput", + "kind": "OBJECT", + "name": "PlaceBeer", "ofType": null } } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "id", + "name": "filtered", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "Boolean", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "sms_id", + "name": "pasteurized", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusCreateOneWithoutItemsInput", - "description": null, - "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": [ { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusWhereUniqueInput", - "ofType": null - }, - "defaultValue": null + "kind": "INTERFACE", + "name": "Node", + "ofType": null } ], - "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusCreateWithoutItemsInput", + "kind": "ENUM", + "name": "LetterOrderByInput", "description": null, "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "id", + "name": "id_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "id_DESC", "description": null, - "type": { - "kind": "ENUM", - "name": "LetsadsSmsMessageStatusEnum", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description", + "name": "email_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "errorCode", + "name": "email_DESC", "description": null, - "type": { - "kind": "ENUM", - "name": "LetsadsSmsMessageStatusErrorCodeEnum", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "SmsMessage", + "name": "subject_ASC", "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SmsMessageCreateOneWithoutStatusInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusCreateWithoutSmsMessageInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "id", + "name": "subject_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "message_ASC", "description": null, - "type": { - "kind": "ENUM", - "name": "LetsadsSmsMessageStatusEnum", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description", + "name": "message_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "errorCode", + "name": "status_ASC", "description": null, - "type": { - "kind": "ENUM", - "name": "LetsadsSmsMessageStatusErrorCodeEnum", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Items", + "name": "status_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemCreateManyWithoutStatusInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rank_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rank_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteOnSend_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteOnSend_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "replyTo_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "replyTo_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "returnTo_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "returnTo_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "LetsadsSmsMessageStatusItemConnection", - "description": "A connection to a list of items.", + "name": "Letter", + "description": null, "fields": [ { - "name": "pageInfo", - "description": "Information to aid in pagination.", + "name": "id", + "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "PageInfo", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -209626,62 +54280,47 @@ "deprecationReason": null }, { - "name": "edges", - "description": "A list of edges.", + "name": "email", + "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LetsadsSmsMessageStatusItemEdge", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "aggregate", + "name": "subject", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "AggregateLetsadsSmsMessageStatusItem", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LetsadsSmsMessageStatusItemEdge", - "description": "An edge in a connection.", - "fields": [ + }, { - "name": "node", - "description": "The item at the end of the edge.", + "name": "message", + "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "LetsadsSmsMessageStatusItem", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -209689,64 +54328,135 @@ "deprecationReason": null }, { - "name": "cursor", - "description": "A cursor for use in pagination.", + "name": "status", + "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "LetterStatus", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "rank", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteOnSend", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "replyTo", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "returnTo", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Place", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PlaceWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Place", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemCreateInput", + "name": "CoordsInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sms_id", + "name": "lat", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null } }, "defaultValue": null }, { - "name": "Status", + "name": "lng", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusCreateOneWithoutItemsInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, "defaultValue": null } @@ -209756,47 +54466,92 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemCreateWithoutStatusInput", + "kind": "ENUM", + "name": "PlaceType", "description": null, "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "id", + "name": "shop", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bar", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "brewery", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "MapPlaceConnection", + "description": null, + "fields": [ + { + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AggregatePlace", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "sms_id", + "name": "edges", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PlaceEdge", + "ofType": null + } + } } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "LetsadsSmsMessageStatusItemPreviousValues", + "name": "AggregatePlace", "description": null, "fields": [ { - "name": "id", + "name": "count", "description": null, "args": [], "type": { @@ -209804,7 +54559,34 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PlaceEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "node", + "description": "The item at the end of the edge.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Place", "ofType": null } }, @@ -209812,31 +54594,42 @@ "deprecationReason": null }, { - "name": "createdAt", - "description": null, + "name": "cursor", + "description": "A cursor for use in pagination.", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "mapGeoObjectsConnection", + "description": null, + "fields": [ { - "name": "updatedAt", + "name": "aggregate", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "OBJECT", + "name": "AggregatePlace", "ofType": null } }, @@ -209844,16 +54637,24 @@ "deprecationReason": null }, { - "name": "sms_id", + "name": "objects", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Place", + "ofType": null + } + } } }, "isDeprecated": false, @@ -209867,7 +54668,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemScalarWhereInput", + "name": "RouteWhereInput", "description": null, "fields": null, "inputFields": [ @@ -209882,7 +54683,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemScalarWhereInput", + "name": "RouteWhereInput", "ofType": null } } @@ -209900,7 +54701,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemScalarWhereInput", + "name": "RouteWhereInput", "ofType": null } } @@ -209918,7 +54719,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemScalarWhereInput", + "name": "RouteWhereInput", "ofType": null } } @@ -210082,27 +54883,27 @@ "defaultValue": null }, { - "name": "createdAt", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_not", + "name": "name_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_in", + "name": "name_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -210112,7 +54913,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null } } @@ -210120,7 +54921,7 @@ "defaultValue": null }, { - "name": "createdAt_not_in", + "name": "name_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -210130,7 +54931,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null } } @@ -210138,163 +54939,127 @@ "defaultValue": null }, { - "name": "createdAt_lt", + "name": "name_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_lte", + "name": "name_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_gt", + "name": "name_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_gte", + "name": "name_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", + "name": "name_contains", + "description": "All values containing the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", + "name": "name_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_lt", - "description": "All values less than the given value.", + "name": "name_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", + "name": "name_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", + "name": "name_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", + "name": "name_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "sms_id", + "name": "path", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "sms_id_not", + "name": "path_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "sms_id_in", + "name": "path_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -210304,7 +55069,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } } @@ -210312,7 +55077,7 @@ "defaultValue": null }, { - "name": "sms_id_not_in", + "name": "path_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -210322,7 +55087,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } } @@ -210330,202 +55095,128 @@ "defaultValue": null }, { - "name": "sms_id_lt", + "name": "path_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "sms_id_lte", + "name": "path_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "sms_id_gt", + "name": "path_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "sms_id_gte", + "name": "path_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LetsadsSmsMessageStatusItemSubscriptionPayload", - "description": null, - "fields": [ + }, { - "name": "mutation", - "description": null, - "args": [], + "name": "path_contains", + "description": "All values containing the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "node", - "description": null, - "args": [], + "name": "path_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "OBJECT", - "name": "LetsadsSmsMessageStatusItem", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedFields", - "description": null, - "args": [], + "name": "path_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "previousValues", - "description": null, - "args": [], + "name": "path_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "OBJECT", - "name": "LetsadsSmsMessageStatusItemPreviousValues", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ + "defaultValue": null + }, { - "name": "AND", - "description": "Logical AND on all given filters.", + "name": "path_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemSubscriptionWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", + "name": "path_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemSubscriptionWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + "name": "exact", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemSubscriptionWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null }, { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", + "name": "exact_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", + "name": "component", + "description": null, "type": { "kind": "SCALAR", "name": "String", @@ -210534,8 +55225,18 @@ "defaultValue": null }, { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", + "name": "component_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "component_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -210552,8 +55253,8 @@ "defaultValue": null }, { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", + "name": "component_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -210570,341 +55271,152 @@ "defaultValue": null }, { - "name": "node", - "description": null, + "name": "component_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemUpdateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "sms_id", - "description": null, + "name": "component_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Status", - "description": null, + "name": "component_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusUpdateOneWithoutItemsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusUpdateOneWithoutItemsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "component_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusWhereUniqueInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "disconnect", - "description": null, + "name": "component_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "sms_id", - "description": null, + "name": "component_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "sms_id", - "description": null, + "name": "component_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemUpdateManyWithoutStatusInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null }, { - "name": "set", - "description": null, + "name": "component_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "disconnect", - "description": null, + "name": "component_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "updateMany", - "description": null, + "name": "component_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemUpdateManyWithWhereNestedInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", + "name": "Parent", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemScalarWhereInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "RouteWhereInput", + "ofType": null }, "defaultValue": null }, { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemUpdateWithoutStatusDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "sms_id", + "name": "Childs_every", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RouteWhereInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemUpdateWithWhereUniqueWithoutStatusInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "Childs_some", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemWhereUniqueInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "RouteWhereInput", + "ofType": null }, "defaultValue": null }, { - "name": "data", + "name": "Childs_none", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemUpdateWithoutStatusDataInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "RouteWhereInput", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemUpsertWithWhereUniqueWithoutStatusInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "CreatedBy", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemWhereUniqueInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null }, "defaultValue": null } @@ -210915,7 +55427,7 @@ }, { "kind": "ENUM", - "name": "LetsadsSmsMessageStatusOrderByInput", + "name": "RouteOrderByInput", "description": null, "fields": null, "inputFields": null, @@ -210934,61 +55446,73 @@ "deprecationReason": null }, { - "name": "createdAt_ASC", + "name": "name_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt_DESC", + "name": "name_DESC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedAt_ASC", + "name": "path_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedAt_DESC", + "name": "path_DESC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name_ASC", + "name": "exact_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name_DESC", + "name": "exact_DESC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "description_ASC", + "name": "component_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "description_DESC", + "name": "component_DESC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "errorCode_ASC", + "name": "updatedAt_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "errorCode_DESC", + "name": "updatedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_DESC", "description": null, "isDeprecated": false, "deprecationReason": null @@ -210998,7 +55522,7 @@ }, { "kind": "OBJECT", - "name": "LetsadsSmsMessageStatusPreviousValues", + "name": "Route", "description": null, "fields": [ { @@ -211018,23 +55542,19 @@ "deprecationReason": null }, { - "name": "createdAt", + "name": "name", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedAt", + "name": "path", "description": null, "args": [], "type": { @@ -211042,7 +55562,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null } }, @@ -211050,62 +55570,31 @@ "deprecationReason": null }, { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "LetsadsSmsMessageStatusEnum", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", + "name": "exact", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "errorCode", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "LetsadsSmsMessageStatusErrorCodeEnum", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LetsadsSmsMessageStatusSubscriptionPayload", - "description": null, - "fields": [ - { - "name": "mutation", + "name": "component", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "MutationType", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -211113,21 +55602,103 @@ "deprecationReason": null }, { - "name": "node", + "name": "Parent", "description": null, - "args": [], + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RouteWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "OBJECT", - "name": "LetsadsSmsMessageStatus", + "name": "Route", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedFields", + "name": "Childs", "description": null, - "args": [], + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RouteWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "RouteOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "LIST", "name": null, @@ -211135,8 +55706,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Route", "ofType": null } } @@ -211145,12 +55716,23 @@ "deprecationReason": null }, { - "name": "previousValues", + "name": "CreatedBy", "description": null, - "args": [], + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "OBJECT", - "name": "LetsadsSmsMessageStatusPreviousValues", + "name": "User", "ofType": null }, "isDeprecated": false, @@ -211158,13 +55740,19 @@ } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusSubscriptionWhereInput", + "name": "GameWhereInput", "description": null, "fields": null, "inputFields": [ @@ -211179,7 +55767,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusSubscriptionWhereInput", + "name": "GameWhereInput", "ofType": null } } @@ -211197,7 +55785,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusSubscriptionWhereInput", + "name": "GameWhereInput", "ofType": null } } @@ -211215,7 +55803,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusSubscriptionWhereInput", + "name": "GameWhereInput", "ofType": null } } @@ -211223,36 +55811,28 @@ "defaultValue": null }, { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", + "name": "id", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", + "name": "id_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", + "name": "id_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -211261,7 +55841,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } } @@ -211269,8 +55849,8 @@ "defaultValue": null }, { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", + "name": "id_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -211279,7 +55859,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } } @@ -211287,724 +55867,590 @@ "defaultValue": null }, { - "name": "node", - "description": null, + "name": "id_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusWhereInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusUpdateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", - "description": null, + "name": "id_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "ENUM", - "name": "LetsadsSmsMessageStatusEnum", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "id_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "errorCode", - "description": null, + "name": "id_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "ENUM", - "name": "LetsadsSmsMessageStatusErrorCodeEnum", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "SmsMessage", - "description": null, + "name": "id_contains", + "description": "All values containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "SmsMessageUpdateOneRequiredWithoutStatusInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Items", - "description": null, + "name": "id_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemUpdateManyWithoutStatusInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SmsMessageUpdateOneRequiredWithoutStatusInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "id_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "SmsMessageWhereUniqueInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", - "description": null, + "name": "id_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "ENUM", - "name": "LetsadsSmsMessageStatusEnum", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "id_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "errorCode", - "description": null, + "name": "id_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "ENUM", - "name": "LetsadsSmsMessageStatusErrorCodeEnum", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusUpdateOneWithoutSmsMessageInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "createdAt", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusWhereUniqueInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "disconnect", - "description": null, + "name": "createdAt_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusUpdateWithoutItemsDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", - "description": null, + "name": "createdAt_in", + "description": "All values that are contained in given list.", "type": { - "kind": "ENUM", - "name": "LetsadsSmsMessageStatusEnum", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "createdAt_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "createdAt_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "errorCode", - "description": null, + "name": "createdAt_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "ENUM", - "name": "LetsadsSmsMessageStatusErrorCodeEnum", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "SmsMessage", - "description": null, + "name": "createdAt_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "SmsMessageUpdateOneRequiredWithoutStatusInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusUpdateWithoutSmsMessageDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", - "description": null, + "name": "createdAt_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "ENUM", - "name": "LetsadsSmsMessageStatusEnum", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "description", + "name": "updatedAt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "errorCode", - "description": null, + "name": "updatedAt_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "ENUM", - "name": "LetsadsSmsMessageStatusErrorCodeEnum", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Items", - "description": null, + "name": "updatedAt_in", + "description": "All values that are contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusItemUpdateManyWithoutStatusInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Letter", - "description": null, - "fields": [ + }, { - "name": "id", - "description": null, - "args": [], + "name": "updatedAt_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "createdAt", - "description": null, - "args": [], + "name": "updatedAt_lt", + "description": "All values less than the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedAt", - "description": null, - "args": [], + "name": "updatedAt_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "email", - "description": null, - "args": [], + "name": "updatedAt_gt", + "description": "All values greater than the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "subject", - "description": null, - "args": [], + "name": "updatedAt_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "message", + "name": "name", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "status", - "description": null, - "args": [], + "name": "name_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "LetterStatus", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "rank", - "description": null, - "args": [], + "name": "name_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "deleteOnSend", - "description": null, - "args": [], + "name": "name_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "replyTo", - "description": null, - "args": [], + "name": "name_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "returnTo", - "description": null, - "args": [], + "name": "name_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "User", - "description": null, - "args": [], + "name": "name_contains", + "description": "All values containing the given string.", "type": { - "kind": "OBJECT", - "name": "User", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LetterConnection", - "description": "A connection to a list of items.", - "fields": [ + "defaultValue": null + }, { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], + "name": "name_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "edges", - "description": "A list of edges.", - "args": [], + "name": "name_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LetterEdge", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "aggregate", - "description": null, - "args": [], + "name": "name_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateLetter", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LetterEdge", - "description": "An edge in a connection.", - "fields": [ + "defaultValue": null + }, { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], + "name": "name_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Letter", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], + "name": "name_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LetterCreateInput", - "description": null, - "fields": null, - "inputFields": [ + "defaultValue": null + }, { - "name": "id", + "name": "start_date", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "email", - "description": null, + "name": "start_date_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, "defaultValue": null }, { - "name": "subject", - "description": null, + "name": "start_date_in", + "description": "All values that are contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } } }, "defaultValue": null }, { - "name": "message", - "description": null, + "name": "start_date_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } } }, "defaultValue": null }, { - "name": "status", - "description": null, + "name": "start_date_lt", + "description": "All values less than the given value.", "type": { - "kind": "ENUM", - "name": "LetterStatus", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "rank", - "description": null, + "name": "start_date_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "deleteOnSend", - "description": null, + "name": "start_date_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "replyTo", - "description": null, + "name": "start_date_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "returnTo", + "name": "end_date", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "User", - "description": null, + "name": "end_date_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutLettersCreatedInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutLettersCreatedInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "end_date_in", + "description": "All values that are contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LetterCreateManyWithoutUserInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "end_date_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -212012,111 +56458,123 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "LetterWhereUniqueInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LetterWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "end_date_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LetterCreateWithoutUserInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "end_date_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "email", - "description": null, + "name": "end_date_gt", + "description": "All values greater than the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, "defaultValue": null }, { - "name": "subject", + "name": "end_date_gte", + "description": "All values greater than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sequence", "description": null, "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sequence_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sequence_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, "defaultValue": null }, { - "name": "message", - "description": null, + "name": "sequence_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, "defaultValue": null }, { - "name": "status", - "description": null, + "name": "sequence_lt", + "description": "All values less than the given value.", "type": { - "kind": "ENUM", - "name": "LetterStatus", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "rank", - "description": null, + "name": "sequence_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", "name": "Int", @@ -212125,357 +56583,183 @@ "defaultValue": null }, { - "name": "deleteOnSend", - "description": null, + "name": "sequence_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "replyTo", - "description": null, + "name": "sequence_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "returnTo", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "LetterOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "email_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "email_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subject_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subject_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rank_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rank_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteOnSend_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteOnSend_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "replyTo_ASC", + "name": "Tourney", "description": null, - "isDeprecated": false, - "deprecationReason": null + "type": { + "kind": "INPUT_OBJECT", + "name": "TourneyWhereInput", + "ofType": null + }, + "defaultValue": null }, { - "name": "replyTo_DESC", + "name": "Users_every", "description": null, - "isDeprecated": false, - "deprecationReason": null + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null }, { - "name": "returnTo_ASC", + "name": "Users_some", "description": null, - "isDeprecated": false, - "deprecationReason": null + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null }, { - "name": "returnTo_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LetterPreviousValues", - "description": null, - "fields": [ - { - "name": "id", + "name": "Users_none", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "createdAt", + "name": "Teams_every", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "TeamWhereInput", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedAt", + "name": "Teams_some", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "TeamWhereInput", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "email", + "name": "Teams_none", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "TeamWhereInput", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "subject", + "name": "Parent", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "GameWhereInput", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "message", + "name": "Childs_every", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "GameWhereInput", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "status", + "name": "Childs_some", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "LetterStatus", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "GameWhereInput", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "rank", + "name": "Childs_none", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "GameWhereInput", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "deleteOnSend", + "name": "Results_every", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "GameResultWhereInput", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "replyTo", + "name": "Results_some", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "GameResultWhereInput", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "returnTo", + "name": "Results_none", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "GameResultWhereInput", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null } - ], - "inputFields": null, - "interfaces": [], + ], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "LetterScalarWhereInput", + "name": "TourneyWhereInput", "description": null, "fields": null, "inputFields": [ @@ -212490,7 +56774,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "LetterScalarWhereInput", + "name": "TourneyWhereInput", "ofType": null } } @@ -212508,7 +56792,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "LetterScalarWhereInput", + "name": "TourneyWhereInput", "ofType": null } } @@ -212526,7 +56810,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "LetterScalarWhereInput", + "name": "TourneyWhereInput", "ofType": null } } @@ -212882,7 +57166,7 @@ "defaultValue": null }, { - "name": "email", + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -212892,7 +57176,7 @@ "defaultValue": null }, { - "name": "email_not", + "name": "name_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", @@ -212902,7 +57186,7 @@ "defaultValue": null }, { - "name": "email_in", + "name": "name_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -212920,7 +57204,7 @@ "defaultValue": null }, { - "name": "email_not_in", + "name": "name_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -212938,7 +57222,7 @@ "defaultValue": null }, { - "name": "email_lt", + "name": "name_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", @@ -212948,7 +57232,7 @@ "defaultValue": null }, { - "name": "email_lte", + "name": "name_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", @@ -212958,7 +57242,7 @@ "defaultValue": null }, { - "name": "email_gt", + "name": "name_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", @@ -212968,7 +57252,7 @@ "defaultValue": null }, { - "name": "email_gte", + "name": "name_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", @@ -212978,7 +57262,7 @@ "defaultValue": null }, { - "name": "email_contains", + "name": "name_contains", "description": "All values containing the given string.", "type": { "kind": "SCALAR", @@ -212988,7 +57272,7 @@ "defaultValue": null }, { - "name": "email_not_contains", + "name": "name_not_contains", "description": "All values not containing the given string.", "type": { "kind": "SCALAR", @@ -212998,7 +57282,7 @@ "defaultValue": null }, { - "name": "email_starts_with", + "name": "name_starts_with", "description": "All values starting with the given string.", "type": { "kind": "SCALAR", @@ -213008,7 +57292,7 @@ "defaultValue": null }, { - "name": "email_not_starts_with", + "name": "name_not_starts_with", "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", @@ -213018,7 +57302,7 @@ "defaultValue": null }, { - "name": "email_ends_with", + "name": "name_ends_with", "description": "All values ending with the given string.", "type": { "kind": "SCALAR", @@ -213028,7 +57312,7 @@ "defaultValue": null }, { - "name": "email_not_ends_with", + "name": "name_not_ends_with", "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", @@ -213038,27 +57322,27 @@ "defaultValue": null }, { - "name": "subject", + "name": "code", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "subject_not", + "name": "code_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "subject_in", + "name": "code_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -213068,7 +57352,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } } @@ -213076,7 +57360,7 @@ "defaultValue": null }, { - "name": "subject_not_in", + "name": "code_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -213086,7 +57370,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } } @@ -213094,127 +57378,127 @@ "defaultValue": null }, { - "name": "subject_lt", + "name": "code_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "subject_lte", + "name": "code_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "subject_gt", + "name": "code_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "subject_gte", + "name": "code_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "subject_contains", + "name": "code_contains", "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "subject_not_contains", + "name": "code_not_contains", "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "subject_starts_with", + "name": "code_starts_with", "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "subject_not_starts_with", + "name": "code_not_starts_with", "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "subject_ends_with", + "name": "code_ends_with", "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "subject_not_ends_with", + "name": "code_not_ends_with", "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "message", + "name": "date", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "message_not", + "name": "date_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "message_in", + "name": "date_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -213224,7 +57508,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null } } @@ -213232,7 +57516,7 @@ "defaultValue": null }, { - "name": "message_not_in", + "name": "date_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -213242,7 +57526,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null } } @@ -213250,127 +57534,308 @@ "defaultValue": null }, { - "name": "message_lt", + "name": "date_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "message_lte", + "name": "date_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "message_gt", + "name": "date_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "message_gte", + "name": "date_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "message_contains", - "description": "All values containing the given string.", + "name": "date_till", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "message_not_contains", - "description": "All values not containing the given string.", + "name": "date_till_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "message_starts_with", - "description": "All values starting with the given string.", + "name": "date_till_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "date_till_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "date_till_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "message_not_starts_with", - "description": "All values not starting with the given string.", + "name": "date_till_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "message_ends_with", - "description": "All values ending with the given string.", + "name": "date_till_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "message_not_ends_with", - "description": "All values not ending with the given string.", + "name": "date_till_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "status", + "name": "CreatedBy", "description": null, "type": { - "kind": "ENUM", - "name": "LetterStatus", + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "status_not", + "name": "Tournament", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TournamentWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Users_every", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Users_some", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Users_none", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Games_every", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "GameWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Games_some", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "GameWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Games_none", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "GameWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TournamentWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": "Logical AND on all given filters.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TournamentWhereInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "OR", + "description": "Logical OR on all given filters.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TournamentWhereInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TournamentWhereInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not", "description": "All values that are not equal to given value.", "type": { - "kind": "ENUM", - "name": "LetterStatus", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "status_in", + "name": "id_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -213379,8 +57844,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "LetterStatus", + "kind": "SCALAR", + "name": "ID", "ofType": null } } @@ -213388,7 +57853,7 @@ "defaultValue": null }, { - "name": "status_not_in", + "name": "id_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -213397,8 +57862,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "LetterStatus", + "kind": "SCALAR", + "name": "ID", "ofType": null } } @@ -213406,27 +57871,127 @@ "defaultValue": null }, { - "name": "rank", + "name": "id_lt", + "description": "All values less than the given value.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lte", + "description": "All values less than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gt", + "description": "All values greater than the given value.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gte", + "description": "All values greater than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_contains", + "description": "All values containing the given string.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not_contains", + "description": "All values not containing the given string.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_starts_with", + "description": "All values starting with the given string.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not_starts_with", + "description": "All values not starting with the given string.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_ends_with", + "description": "All values ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not_ends_with", + "description": "All values not ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "rank_not", + "name": "createdAt_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "rank_in", + "name": "createdAt_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -213436,7 +58001,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null } } @@ -213444,7 +58009,7 @@ "defaultValue": null }, { - "name": "rank_not_in", + "name": "createdAt_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -213454,7 +58019,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null } } @@ -213462,67 +58027,143 @@ "defaultValue": null }, { - "name": "rank_lt", + "name": "createdAt_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "rank_lte", + "name": "createdAt_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "rank_gt", + "name": "createdAt_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "rank_gte", + "name": "createdAt_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "deleteOnSend", + "name": "updatedAt", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "deleteOnSend_not", + "name": "updatedAt_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "replyTo", + "name": "updatedAt_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "updatedAt_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "updatedAt_lt", + "description": "All values less than the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_lte", + "description": "All values less than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_gt", + "description": "All values greater than the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_gte", + "description": "All values greater than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -213532,7 +58173,7 @@ "defaultValue": null }, { - "name": "replyTo_not", + "name": "name_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", @@ -213542,7 +58183,7 @@ "defaultValue": null }, { - "name": "replyTo_in", + "name": "name_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -213560,7 +58201,7 @@ "defaultValue": null }, { - "name": "replyTo_not_in", + "name": "name_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -213578,7 +58219,7 @@ "defaultValue": null }, { - "name": "replyTo_lt", + "name": "name_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", @@ -213588,7 +58229,7 @@ "defaultValue": null }, { - "name": "replyTo_lte", + "name": "name_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", @@ -213598,7 +58239,7 @@ "defaultValue": null }, { - "name": "replyTo_gt", + "name": "name_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", @@ -213608,7 +58249,7 @@ "defaultValue": null }, { - "name": "replyTo_gte", + "name": "name_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", @@ -213618,7 +58259,7 @@ "defaultValue": null }, { - "name": "replyTo_contains", + "name": "name_contains", "description": "All values containing the given string.", "type": { "kind": "SCALAR", @@ -213628,7 +58269,7 @@ "defaultValue": null }, { - "name": "replyTo_not_contains", + "name": "name_not_contains", "description": "All values not containing the given string.", "type": { "kind": "SCALAR", @@ -213638,7 +58279,7 @@ "defaultValue": null }, { - "name": "replyTo_starts_with", + "name": "name_starts_with", "description": "All values starting with the given string.", "type": { "kind": "SCALAR", @@ -213648,7 +58289,7 @@ "defaultValue": null }, { - "name": "replyTo_not_starts_with", + "name": "name_not_starts_with", "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", @@ -213658,7 +58299,7 @@ "defaultValue": null }, { - "name": "replyTo_ends_with", + "name": "name_ends_with", "description": "All values ending with the given string.", "type": { "kind": "SCALAR", @@ -213668,7 +58309,7 @@ "defaultValue": null }, { - "name": "replyTo_not_ends_with", + "name": "name_not_ends_with", "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", @@ -213678,27 +58319,27 @@ "defaultValue": null }, { - "name": "returnTo", + "name": "code", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "returnTo_not", + "name": "code_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "returnTo_in", + "name": "code_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -213708,7 +58349,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } } @@ -213716,7 +58357,7 @@ "defaultValue": null }, { - "name": "returnTo_not_in", + "name": "code_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -213726,7 +58367,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } } @@ -213734,147 +58375,495 @@ "defaultValue": null }, { - "name": "returnTo_lt", + "name": "code_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "returnTo_lte", + "name": "code_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "returnTo_gt", + "name": "code_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "returnTo_gte", + "name": "code_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "returnTo_contains", + "name": "code_contains", "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "returnTo_not_contains", + "name": "code_not_contains", "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "code_starts_with", + "description": "All values starting with the given string.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "code_not_starts_with", + "description": "All values not starting with the given string.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "code_ends_with", + "description": "All values ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "code_not_ends_with", + "description": "All values not ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "CreatedBy", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Tourneys_every", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TourneyWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Tourneys_some", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TourneyWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Tourneys_none", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TourneyWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Group", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TournamentGroupWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TournamentGroupWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": "Logical AND on all given filters.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TournamentGroupWhereInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "OR", + "description": "Logical OR on all given filters.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TournamentGroupWhereInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TournamentGroupWhereInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id_lt", + "description": "All values less than the given value.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lte", + "description": "All values less than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gt", + "description": "All values greater than the given value.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gte", + "description": "All values greater than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_contains", + "description": "All values containing the given string.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not_contains", + "description": "All values not containing the given string.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_starts_with", + "description": "All values starting with the given string.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not_starts_with", + "description": "All values not starting with the given string.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_ends_with", + "description": "All values ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not_ends_with", + "description": "All values not ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "createdAt_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "createdAt_lt", + "description": "All values less than the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "returnTo_starts_with", - "description": "All values starting with the given string.", + "name": "createdAt_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "returnTo_not_starts_with", - "description": "All values not starting with the given string.", + "name": "createdAt_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "returnTo_ends_with", - "description": "All values ending with the given string.", + "name": "createdAt_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "returnTo_not_ends_with", - "description": "All values not ending with the given string.", + "name": "updatedAt", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LetterSubscriptionPayload", - "description": null, - "fields": [ - { - "name": "mutation", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "node", - "description": null, - "args": [], + "name": "updatedAt_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "OBJECT", - "name": "Letter", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedFields", - "description": null, - "args": [], + "name": "updatedAt_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -213883,41 +58872,16 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "previousValues", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "LetterPreviousValues", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LetterSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", + "name": "updatedAt_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -213925,8 +58889,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "LetterSubscriptionWhereInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null } } @@ -213934,62 +58898,48 @@ "defaultValue": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", + "name": "updatedAt_lt", + "description": "All values less than the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LetterSubscriptionWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, "defaultValue": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + "name": "updatedAt_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LetterSubscriptionWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, "defaultValue": null }, { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", + "name": "updatedAt_gt", + "description": "All values greater than the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", + "name": "updatedAt_gte", + "description": "All values greater than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, "type": { "kind": "SCALAR", "name": "String", @@ -213998,8 +58948,18 @@ "defaultValue": null }, { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", + "name": "name_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -214016,8 +58976,8 @@ "defaultValue": null }, { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", + "name": "name_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -214034,29 +58994,18 @@ "defaultValue": null }, { - "name": "node", - "description": null, + "name": "name_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "LetterWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LetterUpdateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "email", - "description": null, + "name": "name_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -214065,8 +59014,8 @@ "defaultValue": null }, { - "name": "subject", - "description": null, + "name": "name_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -214075,8 +59024,8 @@ "defaultValue": null }, { - "name": "message", - "description": null, + "name": "name_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -214085,38 +59034,38 @@ "defaultValue": null }, { - "name": "status", - "description": null, + "name": "name_contains", + "description": "All values containing the given string.", "type": { - "kind": "ENUM", - "name": "LetterStatus", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "rank", - "description": null, + "name": "name_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "deleteOnSend", - "description": null, + "name": "name_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "replyTo", - "description": null, + "name": "name_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -214125,8 +59074,8 @@ "defaultValue": null }, { - "name": "returnTo", - "description": null, + "name": "name_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -214135,224 +59084,207 @@ "defaultValue": null }, { - "name": "User", - "description": null, + "name": "name_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutLettersCreatedInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutLettersCreatedInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "disconnect", - "description": null, + "name": "code_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "email", - "description": null, + "name": "code_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "subject", - "description": null, + "name": "code_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "message", - "description": null, + "name": "code_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "status", - "description": null, + "name": "code_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "ENUM", - "name": "LetterStatus", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "rank", - "description": null, + "name": "code_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "deleteOnSend", - "description": null, + "name": "code_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "replyTo", - "description": null, + "name": "code_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "returnTo", - "description": null, + "name": "code_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "email", - "description": null, + "name": "code_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "subject", - "description": null, + "name": "code_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "message", - "description": null, + "name": "code_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "status", - "description": null, + "name": "code_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "ENUM", - "name": "LetterStatus", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "rank", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "deleteOnSend", + "name": "Tournaments_every", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "TournamentWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "replyTo", + "name": "Tournaments_some", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "TournamentWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "returnTo", + "name": "Tournaments_none", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "TournamentWhereInput", "ofType": null }, "defaultValue": null @@ -214364,13 +59296,13 @@ }, { "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithoutUserInput", + "name": "TeamWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "connect", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { "kind": "LIST", "name": null, @@ -214379,7 +59311,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "LetterWhereUniqueInput", + "name": "TeamWhereInput", "ofType": null } } @@ -214387,8 +59319,8 @@ "defaultValue": null }, { - "name": "set", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { "kind": "LIST", "name": null, @@ -214397,7 +59329,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "LetterWhereUniqueInput", + "name": "TeamWhereInput", "ofType": null } } @@ -214405,8 +59337,8 @@ "defaultValue": null }, { - "name": "disconnect", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { "kind": "LIST", "name": null, @@ -214415,7 +59347,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "LetterWhereUniqueInput", + "name": "TeamWhereInput", "ofType": null } } @@ -214423,8 +59355,28 @@ "defaultValue": null }, { - "name": "updateMany", + "name": "id", "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -214432,8 +59384,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithWhereNestedInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } } @@ -214441,8 +59393,8 @@ "defaultValue": null }, { - "name": "deleteMany", - "description": null, + "name": "id_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -214450,140 +59402,110 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "LetterScalarWhereInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", - "description": null, + "name": "id_lt", + "description": "All values less than the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LetterScalarWhereInput", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "data", - "description": null, + "name": "id_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyDataInput", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LetterUpdateWithoutUserDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "email", - "description": null, + "name": "id_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "subject", - "description": null, + "name": "id_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "message", - "description": null, + "name": "id_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "status", - "description": null, + "name": "id_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "ENUM", - "name": "LetterStatus", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "rank", - "description": null, + "name": "id_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "deleteOnSend", - "description": null, + "name": "id_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "replyTo", - "description": null, + "name": "id_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "returnTo", - "description": null, + "name": "id_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null @@ -214595,183 +59517,123 @@ }, { "kind": "INPUT_OBJECT", - "name": "LetterUpdateWithWhereUniqueWithoutUserInput", + "name": "GameResultWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "where", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "LetterWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GameResultWhereInput", + "ofType": null + } } }, "defaultValue": null }, { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LetterUpdateWithoutUserDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LetterUpsertWithWhereUniqueWithoutUserInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "LetterWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GameResultWhereInput", + "ofType": null + } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LogConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "edges", - "description": "A list of edges.", - "args": [], + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "LogEdge", + "kind": "INPUT_OBJECT", + "name": "GameResultWhereInput", "ofType": null } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "aggregate", + "name": "id", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateLog", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LogEdge", - "description": "An edge in a connection.", - "fields": [ + "defaultValue": null + }, { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], + "name": "id_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Log", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], + "name": "id_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LogCreateInput", - "description": null, - "fields": null, - "inputFields": [ + "defaultValue": null + }, { - "name": "id", - "description": null, + "name": "id_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", "name": "ID", @@ -214780,18 +59642,18 @@ "defaultValue": null }, { - "name": "level", - "description": null, + "name": "id_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "ENUM", - "name": "LogLevel", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "objectType", - "description": null, + "name": "id_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", "name": "ID", @@ -214800,53 +59662,38 @@ "defaultValue": null }, { - "name": "message", - "description": null, + "name": "id_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "stack", - "description": null, + "name": "id_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Import", - "description": null, + "name": "id_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "ImportCreateOneWithoutLogsInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LogCreateWithoutImportInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "id_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", "name": "ID", @@ -214855,18 +59702,18 @@ "defaultValue": null }, { - "name": "level", - "description": null, + "name": "id_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "ENUM", - "name": "LogLevel", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "objectType", - "description": null, + "name": "id_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", "name": "ID", @@ -214875,215 +59722,134 @@ "defaultValue": null }, { - "name": "message", - "description": null, + "name": "id_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "stack", + "name": "createdAt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LogedInConnection", - "description": "A connection to a list of items.", - "fields": [ + }, { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], + "name": "createdAt_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "edges", - "description": "A list of edges.", - "args": [], + "name": "createdAt_in", + "description": "All values that are contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "LogedInEdge", + "kind": "SCALAR", + "name": "DateTime", "ofType": null } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "aggregate", - "description": null, - "args": [], + "name": "createdAt_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "AggregateLogedIn", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LogedInEdge", - "description": "An edge in a connection.", - "fields": [ + "defaultValue": null + }, { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], + "name": "createdAt_lt", + "description": "All values less than the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LogedIn", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], + "name": "createdAt_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LogedInCreateInput", - "description": null, - "fields": null, - "inputFields": [ + "defaultValue": null + }, { - "name": "id", - "description": null, + "name": "createdAt_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "fake", - "description": null, + "name": "createdAt_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "User", + "name": "updatedAt", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutLogedInsInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutLogedInsInput", - "description": null, - "fields": null, - "inputFields": [ + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, { - "name": "connect", - "description": null, + "name": "updatedAt_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LogedInCreateManyWithoutUserInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "updatedAt_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -215091,151 +59857,95 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogedInWhereUniqueInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LogedInWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "updatedAt_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LogedInCreateWithoutUserInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "updatedAt_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "fake", - "description": null, + "name": "updatedAt_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LogedInPreviousValues", - "description": null, - "fields": [ + }, { - "name": "id", - "description": null, - "args": [], + "name": "updatedAt_gt", + "description": "All values greater than the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "createdAt", - "description": null, - "args": [], + "name": "updatedAt_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "fake", + "name": "date", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedAt", - "description": null, - "args": [], + "name": "date_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LogedInScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ + "defaultValue": null + }, { - "name": "AND", - "description": "Logical AND on all given filters.", + "name": "date_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -215243,8 +59953,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogedInScalarWhereInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null } } @@ -215252,8 +59962,8 @@ "defaultValue": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", + "name": "date_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -215261,8 +59971,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogedInScalarWhereInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null } } @@ -215270,45 +59980,67 @@ "defaultValue": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + "name": "date_lt", + "description": "All values less than the given value.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogedInScalarWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, "defaultValue": null }, { - "name": "id", + "name": "date_lte", + "description": "All values less than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_gt", + "description": "All values greater than the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_gte", + "description": "All values greater than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_not", + "name": "name_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_in", + "name": "name_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -215318,7 +60050,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } } @@ -215326,7 +60058,7 @@ "defaultValue": null }, { - "name": "id_not_in", + "name": "name_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -215336,7 +60068,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } } @@ -215344,127 +60076,127 @@ "defaultValue": null }, { - "name": "id_lt", + "name": "name_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_lte", + "name": "name_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_gt", + "name": "name_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_gte", + "name": "name_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_contains", + "name": "name_contains", "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_not_contains", + "name": "name_not_contains", "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_starts_with", + "name": "name_starts_with", "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_not_starts_with", + "name": "name_not_starts_with", "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_ends_with", + "name": "name_ends_with", "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_not_ends_with", + "name": "name_not_ends_with", "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "createdAt", + "name": "value", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_not", + "name": "value_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_in", + "name": "value_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -215474,7 +60206,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null } } @@ -215482,7 +60214,7 @@ "defaultValue": null }, { - "name": "createdAt_not_in", + "name": "value_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -215492,7 +60224,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null } } @@ -215500,88 +60232,407 @@ "defaultValue": null }, { - "name": "createdAt_lt", + "name": "value_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_lte", + "name": "value_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_gt", + "name": "value_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_gte", + "name": "value_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "fake", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "fake_not", - "description": "All values that are not equal to given value.", + "name": "User", + "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Team", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TeamWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Game", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "GameWhereInput", "ofType": null }, "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "GameOrderByInput", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "start_date_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "start_date_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "end_date_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "end_date_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sequence_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sequence_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Game", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { "name": "updatedAt", "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "start_date", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "DateTime", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", + "name": "end_date", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "DateTime", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", + "name": "sequence", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CreatedBy", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Tourney", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TourneyWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Tourney", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Users", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "UserOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "LIST", "name": null, @@ -215589,114 +60640,545 @@ "kind": "NON_NULL", "name": null, "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Teams", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TeamWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "TeamOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Team", "ofType": null } } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", + "name": "Parent", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "GameWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Game", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Childs", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "GameWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "GameOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Game", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Results", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "GameResultWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "GameResultOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GameResult", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Tourney", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedAt_lt", - "description": "All values less than the given value.", + "name": "name", + "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", + "name": "code", + "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "ID", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", + "name": "date", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "DateTime", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", + "name": "date_till", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "DateTime", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LogedInSubscriptionPayload", - "description": null, - "fields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "mutation", + "name": "CreatedBy", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null } + ], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "Tournament", "description": null, - "args": [], + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TournamentWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "OBJECT", - "name": "LogedIn", + "name": "Tournament", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedFields", + "name": "Users", "description": null, - "args": [], + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "UserOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "LIST", "name": null, @@ -215704,8 +61186,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "User", "ofType": null } } @@ -215714,132 +61196,283 @@ "deprecationReason": null }, { - "name": "previousValues", + "name": "Games", "description": null, - "args": [], + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "GameWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "GameOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "OBJECT", - "name": "LogedInPreviousValues", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Game", + "ofType": null + } + } }, "isDeprecated": false, "deprecationReason": null } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "LogedInSubscriptionWhereInput", + "kind": "OBJECT", + "name": "Tournament", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "AND", - "description": "Logical AND on all given filters.", + "name": "id", + "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogedInSubscriptionWhereInput", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", + "name": "createdAt", + "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogedInSubscriptionWhereInput", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + "name": "updatedAt", + "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogedInSubscriptionWhereInput", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", + "name": "name", + "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", + "name": "code", + "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", + "name": "CreatedBy", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", "ofType": null - } + }, + "defaultValue": null } + ], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", + "name": "Tourneys", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TourneyWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "TourneyOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "LIST", "name": null, @@ -215847,204 +61480,320 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Tourney", "ofType": null } } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "node", + "name": "Group", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TournamentGroupWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInWhereInput", + "kind": "OBJECT", + "name": "TournamentGroup", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null } ], - "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "LogedInUpdateInput", + "kind": "ENUM", + "name": "TourneyOrderByInput", "description": null, "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "fake", + "name": "id_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "User", + "name": "id_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutLogedInsInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutLogedInsInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "connect", + "name": "createdAt_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "fake", + "name": "createdAt_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "fake", + "name": "updatedAt_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "code_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "code_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_till_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_till_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyWithoutUserInput", + "kind": "OBJECT", + "name": "TournamentGroup", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "connect", + "name": "id", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogedInWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "set", + "name": "createdAt", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogedInWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "disconnect", + "name": "updatedAt", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogedInWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updateMany", + "name": "name", "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "code", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CreatedBy", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyWithWhereNestedInput", + "name": "UserWhereInput", "ofType": null - } + }, + "defaultValue": null } + ], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "deleteMany", + "name": "Tournaments", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TournamentWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "TournamentOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "LIST", "name": null, @@ -216052,146 +61801,264 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogedInScalarWhereInput", + "kind": "OBJECT", + "name": "Tournament", "ofType": null } } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null } ], - "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyWithWhereNestedInput", + "kind": "ENUM", + "name": "TournamentOrderByInput", "description": null, "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "where", + "name": "id_ASC", "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogedInScalarWhereInput", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", + "name": "id_DESC", "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "code_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "code_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "LogedInUpdateWithoutUserDataInput", + "kind": "ENUM", + "name": "TeamOrderByInput", "description": null, "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "fake", + "name": "id_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "LogedInUpdateWithWhereUniqueWithoutUserInput", + "kind": "OBJECT", + "name": "Team", "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogedInWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - }, + "fields": [ { - "name": "data", + "name": "id", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogedInUpdateWithoutUserDataInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null } ], - "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "LogedInUpsertWithWhereUniqueWithoutUserInput", + "kind": "ENUM", + "name": "GameResultOrderByInput", "description": null, "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "where", + "name": "id_ASC", "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogedInWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "LogPreviousValues", + "name": "GameResult", "description": null, "fields": [ { @@ -216243,127 +62110,132 @@ "deprecationReason": null }, { - "name": "level", + "name": "date", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "LogLevel", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "objectType", + "name": "name", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "message", + "name": "CreatedBy", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stack", - "description": null, - "args": [], + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "User", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LogSubscriptionPayload", - "description": null, - "fields": [ + }, { - "name": "mutation", + "name": "User", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null } + ], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "Team", "description": null, - "args": [], + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TeamWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "OBJECT", - "name": "Log", + "name": "Team", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedFields", + "name": "Game", "description": null, - "args": [], + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "GameWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "Game", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "previousValues", + "name": "value", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "LogPreviousValues", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "isDeprecated": false, @@ -216371,585 +62243,519 @@ } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "LogSubscriptionWhereInput", + "kind": "ENUM", + "name": "TournamentGroupOrderByInput", "description": null, "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null + "name": "id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null + "name": "id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null + "name": "createdAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } - }, - "defaultValue": null + "name": "createdAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "updatedAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "name": "updatedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "name": "name_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "node", + "name": "name_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LogWhereInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "code_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "code_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "LogUpdateInput", + "kind": "ENUM", + "name": "BeerOrderByInput", "description": null, "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "level", + "name": "id_ASC", "description": null, - "type": { - "kind": "ENUM", - "name": "LogLevel", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "objectType", + "name": "id_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "message", + "name": "createdAt_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "stack", + "name": "createdAt_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Import", + "name": "updatedAt_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ImportUpdateOneWithoutLogsInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LogUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "level", + "name": "updatedAt_DESC", "description": null, - "type": { - "kind": "ENUM", - "name": "LogLevel", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "objectType", + "name": "beer_id_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "message", + "name": "beer_id_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "stack", + "name": "name_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LogUpdateWithoutImportDataInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "level", + "name": "name_DESC", "description": null, - "type": { - "kind": "ENUM", - "name": "LogLevel", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "objectType", + "name": "url_name_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "message", + "name": "url_name_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "stack", + "name": "description_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LogUpdateWithWhereUniqueWithoutImportInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "where", + "name": "description_DESC", "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", + "name": "editor_content_ASC", "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogUpdateWithoutImportDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LogUpsertWithWhereUniqueWithoutImportInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "where", + "name": "editor_content_DESC", "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LogWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "MessageConnection", - "description": "A connection to a list of items.", - "fields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, + "name": "country_ASC", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "MessageEdge", - "ofType": null - } - } - }, + "name": "country_DESC", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "aggregate", + "name": "image_ASC", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateMessage", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "MessageEdge", - "description": "An edge in a connection.", - "fields": [ + }, { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Message", - "ofType": null - } - }, + "name": "image_DESC", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "num_comments_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "num_comments_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "num_photos_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "num_photos_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "manufacturer_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "manufacturer_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "region_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "region_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "manufacture_years_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "manufacture_years_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "container_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "container_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "alcohol_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "alcohol_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "wort_percent_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "wort_percent_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "components_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "components_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bitter_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bitter_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "color_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "color_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_request_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_request_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rating_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rating_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "add_user_id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "add_user_id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gallery_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gallery_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "filtered_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "filtered_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pasteurized_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pasteurized_DESC", + "description": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "MessageCreateInput", + "name": "CityWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "MessageType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CityWhereInput", + "ofType": null + } } }, "defaultValue": null }, { - "name": "sender", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CityWhereInput", + "ofType": null + } } }, "defaultValue": null }, { - "name": "world", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WorldCreateOneWithoutMessagesInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CityWhereInput", + "ofType": null + } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "WorldCreateOneWithoutMessagesInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "WorldWhereUniqueInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "MessageCreateWithoutWorldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "id_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", "name": "ID", @@ -216958,375 +62764,260 @@ "defaultValue": null }, { - "name": "type", - "description": null, + "name": "id_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "MessageType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } } }, "defaultValue": null }, { - "name": "sender", - "description": null, + "name": "id_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "body", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "MessageUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "type", - "description": null, + "name": "id_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "ENUM", - "name": "MessageType", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "sender", - "description": null, + "name": "id_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "body", - "description": null, + "name": "id_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "world", - "description": null, + "name": "id_contains", + "description": "All values containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateOneRequiredWithoutMessagesInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateOneRequiredWithoutMessagesInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "id_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "WorldWhereUniqueInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "MessageUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "type", - "description": null, + "name": "id_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "ENUM", - "name": "MessageType", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "sender", - "description": null, + "name": "id_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "body", - "description": null, + "name": "id_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "MessageUpdateWithoutWorldDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "type", - "description": null, + "name": "id_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "ENUM", - "name": "MessageType", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "sender", + "name": "city_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "body", - "description": null, + "name": "city_id_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "MessageUpdateWithWhereUniqueWithoutWorldInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MessageWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null }, { - "name": "data", - "description": null, + "name": "city_id_in", + "description": "All values that are contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "MessageUpdateWithoutWorldDataInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "MessageUpsertWithWhereUniqueWithoutWorldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", - "description": null, + "name": "city_id_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "MessageWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NoticeCreateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "city_id_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "type", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "NoticeType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "User", - "description": null, + "name": "city_id_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutNoticesInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "city_id_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "ChatMessage", - "description": null, + "name": "city_id_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateOneInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "ChatRoomInvitation", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationCreateOneWithoutNoticeInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutNoticesInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "name_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NoticeCreateManyWithoutUserInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "name_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -217334,235 +63025,154 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NoticeWhereUniqueInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NoticeCreateWithoutChatRoomInvitationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null }, { - "name": "type", - "description": null, + "name": "name_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "NoticeType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null }, { - "name": "User", - "description": null, + "name": "name_lt", + "description": "All values less than the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutNoticesInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "name_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ChatMessage", - "description": null, + "name": "name_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NoticeCreateWithoutUserInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "name_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "type", - "description": null, + "name": "name_contains", + "description": "All values containing the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "NoticeType", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "name_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ChatMessage", - "description": null, + "name": "name_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ChatRoomInvitation", - "description": null, + "name": "name_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationCreateOneWithoutNoticeInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NoticeScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NoticeScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", + "name": "name_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NoticeScalarWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + "name": "name_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NoticeScalarWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "id", + "name": "alias", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_not", + "name": "alias_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_in", + "name": "alias_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -217572,7 +63182,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } } @@ -217580,7 +63190,7 @@ "defaultValue": null }, { - "name": "id_not_in", + "name": "alias_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -217590,7 +63200,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } } @@ -217598,127 +63208,127 @@ "defaultValue": null }, { - "name": "id_lt", + "name": "alias_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_lte", + "name": "alias_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_gt", + "name": "alias_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_gte", + "name": "alias_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_contains", + "name": "alias_contains", "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_not_contains", + "name": "alias_not_contains", "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_starts_with", + "name": "alias_starts_with", "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_not_starts_with", + "name": "alias_not_starts_with", "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_ends_with", + "name": "alias_ends_with", "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_not_ends_with", + "name": "alias_not_ends_with", "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "createdAt", + "name": "lat", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_not", + "name": "lat_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_in", + "name": "lat_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -217728,7 +63338,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null } } @@ -217736,7 +63346,7 @@ "defaultValue": null }, { - "name": "createdAt_not_in", + "name": "lat_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -217746,7 +63356,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null } } @@ -217754,67 +63364,67 @@ "defaultValue": null }, { - "name": "createdAt_lt", + "name": "lat_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_lte", + "name": "lat_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_gt", + "name": "lat_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_gte", + "name": "lat_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt", + "name": "lng", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_not", + "name": "lng_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_in", + "name": "lng_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -217824,7 +63434,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null } } @@ -217832,7 +63442,7 @@ "defaultValue": null }, { - "name": "updatedAt_not_in", + "name": "lng_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -217842,7 +63452,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null } } @@ -217850,99 +63460,409 @@ "defaultValue": null }, { - "name": "updatedAt_lt", + "name": "lng_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_lte", + "name": "lng_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_gt", + "name": "lng_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_gte", + "name": "lng_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "CityOrderByInput", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "type", + "name": "id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "city_id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "city_id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "alias_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "alias_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lat_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lat_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lng_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lng_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "City", + "description": null, + "fields": [ + { + "name": "id", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "NoticeType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "type_not", - "description": "All values that are not equal to given value.", + "name": "city_id", + "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "NoticeType", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "type_in", - "description": "All values that are contained in given list.", + "name": "name", + "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "NoticeType", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "type_not_in", - "description": "All values that are not contained in given list.", + "name": "alias", + "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "NoticeType", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lat", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lng", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null } }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "TarifOrderByInput", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "active_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "active_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "maxPriceItems_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "maxPriceItems_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "price_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "price_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allowIcon_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allowIcon_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allowBanner_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allowBanner_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RouteWhereUniqueInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "path", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "defaultValue": null } ], @@ -217952,56 +63872,98 @@ }, { "kind": "INPUT_OBJECT", - "name": "NoticeUpdateInput", + "name": "EthAccountWhereUniqueInput", "description": null, "fields": null, "inputFields": [ { - "name": "type", + "name": "id", "description": null, "type": { - "kind": "ENUM", - "name": "NoticeType", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "User", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutNoticesInput", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthTransactionWhereUniqueInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereUniqueInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "ChatMessage", + "name": "code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateOneInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "ChatRoomInvitation", + "name": "uri", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationUpdateOneWithoutNoticeInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null @@ -218013,16 +63975,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutNoticesInput", + "name": "ChatMessageReadedWhereUniqueInput", "description": null, "fields": null, "inputFields": [ { - "name": "connect", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null @@ -218034,16 +63996,26 @@ }, { "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyDataInput", + "name": "ChatRoomWhereUniqueInput", "description": null, "fields": null, "inputFields": [ { - "name": "type", + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "code", "description": null, "type": { - "kind": "ENUM", - "name": "NoticeType", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null @@ -218055,16 +64027,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyMutationInput", + "name": "NoticeWhereUniqueInput", "description": null, "fields": null, "inputFields": [ { - "name": "type", + "name": "id", "description": null, "type": { - "kind": "ENUM", - "name": "NoticeType", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null @@ -218076,97 +64048,37 @@ }, { "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyWithoutUserInput", + "name": "NotificationTypeWhereUniqueInput", "description": null, "fields": null, "inputFields": [ { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NoticeWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NoticeWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", + "name": "id", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NoticeWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "updateMany", + "name": "name", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyWithWhereNestedInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "deleteMany", + "name": "code", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NoticeScalarWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null } @@ -218177,35 +64089,17 @@ }, { "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyWithWhereNestedInput", + "name": "ResourceTagWhereUniqueInput", "description": null, "fields": null, "inputFields": [ { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NoticeScalarWhereInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", + "name": "id", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyDataInput", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null } @@ -218216,46 +64110,68 @@ }, { "kind": "INPUT_OBJECT", - "name": "NoticeUpdateWithoutChatRoomInvitationDataInput", + "name": "TagWhereUniqueInput", "description": null, "fields": null, "inputFields": [ { - "name": "type", + "name": "id", "description": null, "type": { - "kind": "ENUM", - "name": "NoticeType", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "User", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutNoticesInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GameWhereUniqueInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "CreatedBy", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GameResultWhereUniqueInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "ChatMessage", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateOneInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null @@ -218267,46 +64183,57 @@ }, { "kind": "INPUT_OBJECT", - "name": "NoticeUpdateWithoutUserDataInput", + "name": "TournamentWhereUniqueInput", "description": null, "fields": null, "inputFields": [ { - "name": "type", + "name": "id", "description": null, "type": { - "kind": "ENUM", - "name": "NoticeType", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TournamentGroupWhereUniqueInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "ChatMessage", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateOneInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "ChatRoomInvitation", + "name": "code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomInvitationUpdateOneWithoutNoticeInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null @@ -218318,35 +64245,27 @@ }, { "kind": "INPUT_OBJECT", - "name": "NoticeUpdateWithWhereUniqueWithoutUserInput", + "name": "TourneyWhereUniqueInput", "description": null, "fields": null, "inputFields": [ { - "name": "where", + "name": "id", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NoticeWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "data", + "name": "code", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NoticeUpdateWithoutUserDataInput", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null } @@ -218357,21 +64276,17 @@ }, { "kind": "INPUT_OBJECT", - "name": "NoticeUpsertWithWhereUniqueWithoutUserInput", + "name": "VoteWhereUniqueInput", "description": null, "fields": null, "inputFields": [ { - "name": "where", + "name": "id", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NoticeWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null } @@ -218382,7 +64297,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateInput", + "name": "BeerWhereUniqueInput", "description": null, "fields": null, "inputFields": [ @@ -218397,41 +64312,38 @@ "defaultValue": null }, { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "code", + "name": "beer_id", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CityWhereUniqueInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "comment", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "city_id", "description": null, "type": { "kind": "SCALAR", @@ -218441,26 +64353,22 @@ "defaultValue": null }, { - "name": "Users", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutNotificationTypesInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "alias", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutNotificationTypesCreatedInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null } @@ -218471,45 +64379,26 @@ }, { "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutNotificationTypesInput", + "name": "CommentWhereUniqueInput", "description": null, "fields": null, "inputFields": [ { - "name": "connect", + "name": "id", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutNotificationTypesCreatedInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "comment_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null @@ -218521,54 +64410,27 @@ }, { "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutCreatedByInput", + "name": "PlaceWhereUniqueInput", "description": null, "fields": null, "inputFields": [ { - "name": "connect", + "name": "id", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutUsersInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "place_id", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null } @@ -218579,7 +64441,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateWithoutCreatedByInput", + "name": "TopicWhereUniqueInput", "description": null, "fields": null, "inputFields": [ @@ -218594,55 +64456,62 @@ "defaultValue": null }, { - "name": "name", + "name": "topic_id", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "code", + "name": "url_name", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthBlockWhereUniqueInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "comment", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "hash", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Users", + "name": "number", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutNotificationTypesInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null @@ -218654,7 +64523,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateWithoutUsersInput", + "name": "EthContractSourceWhereUniqueInput", "description": null, "fields": null, "inputFields": [ @@ -218667,23 +64536,20 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "code", + "name": "id", "description": null, "type": { "kind": "SCALAR", @@ -218693,7 +64559,7 @@ "defaultValue": null }, { - "name": "comment", + "name": "username", "description": null, "type": { "kind": "SCALAR", @@ -218703,7 +64569,7 @@ "defaultValue": null }, { - "name": "oldID", + "name": "user_id", "description": null, "type": { "kind": "SCALAR", @@ -218711,18 +64577,25 @@ "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatMessageWhereUniqueInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "CreatedBy", + "name": "id", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutNotificationTypesCreatedInput", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null } @@ -218733,19 +64606,19 @@ }, { "kind": "OBJECT", - "name": "NotificationTypePreviousValues", - "description": null, + "name": "RouteConnection", + "description": "A connection to a list of items.", "fields": [ { - "name": "id", - "description": null, + "name": "pageInfo", + "description": "Information to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "PageInfo", "ofType": null } }, @@ -218753,31 +64626,62 @@ "deprecationReason": null }, { - "name": "createdAt", - "description": null, + "name": "edges", + "description": "A list of edges.", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RouteEdge", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedAt", + "name": "aggregate", "description": null, "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AggregateRoute", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PageInfo", + "description": "Information about pagination in a connection.", + "fields": [ + { + "name": "hasNextPage", + "description": "When paginating forwards, are there more items?", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "Boolean", "ofType": null } }, @@ -218785,15 +64689,15 @@ "deprecationReason": null }, { - "name": "name", - "description": null, + "name": "hasPreviousPage", + "description": "When paginating backwards, are there more items?", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, @@ -218801,20 +64705,20 @@ "deprecationReason": null }, { - "name": "code", - "description": null, + "name": "startCursor", + "description": "When paginating backwards, the cursor to continue.", "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "comment", - "description": null, + "name": "endCursor", + "description": "When paginating forwards, the cursor to continue.", "args": [], "type": { "kind": "SCALAR", @@ -218823,15 +64727,46 @@ }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RouteEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "node", + "description": "The item at the end of the edge.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Route", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "oldID", - "description": null, + "name": "cursor", + "description": "A cursor for use in pagination.", "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -218844,50 +64779,65 @@ }, { "kind": "OBJECT", - "name": "NotificationTypeSubscriptionPayload", + "name": "AggregateRoute", "description": null, "fields": [ { - "name": "mutation", + "name": "count", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "MutationType", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EthAccountConnection", + "description": "A connection to a list of items.", + "fields": [ { - "name": "node", - "description": null, + "name": "pageInfo", + "description": "Information to aid in pagination.", "args": [], "type": { - "kind": "OBJECT", - "name": "NotificationType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedFields", - "description": null, + "name": "edges", + "description": "A list of edges.", "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "EthAccountEdge", "ofType": null } } @@ -218896,13 +64846,17 @@ "deprecationReason": null }, { - "name": "previousValues", + "name": "aggregate", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "NotificationTypePreviousValues", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AggregateEthAccount", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -218914,742 +64868,1142 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "EthAccountEdge", + "description": "An edge in a connection.", + "fields": [ { - "name": "AND", - "description": "Logical AND on all given filters.", + "name": "node", + "description": "The item at the end of the edge.", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeSubscriptionWhereInput", - "ofType": null - } + "kind": "OBJECT", + "name": "EthAccount", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeSubscriptionWhereInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AggregateEthAccount", + "description": null, + "fields": [ { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + "name": "count", + "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeSubscriptionWhereInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EthTransactionConnection", + "description": "A connection to a list of items.", + "fields": [ + { + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", + "name": "edges", + "description": "A list of edges.", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "MutationType", + "kind": "OBJECT", + "name": "EthTransactionEdge", "ofType": null } } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", + "name": "aggregate", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AggregateEthTransaction", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EthTransactionEdge", + "description": "An edge in a connection.", + "fields": [ { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", + "name": "node", + "description": "The item at the end of the edge.", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "EthTransaction", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AggregateEthTransaction", + "description": null, + "fields": [ { - "name": "node", + "name": "count", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeWhereInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateInput", - "description": null, - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "ResourceConnection", + "description": "A connection to a list of items.", + "fields": [ { - "name": "name", - "description": null, + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "code", - "description": null, + "name": "edges", + "description": "A list of edges.", + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceEdge", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "comment", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AggregateResource", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ResourceEdge", + "description": "An edge in a connection.", + "fields": [ { - "name": "oldID", - "description": null, + "name": "node", + "description": "The item at the end of the edge.", + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Resource", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Users", - "description": null, + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutNotificationTypesInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AggregateResource", + "description": null, + "fields": [ { - "name": "CreatedBy", + "name": "count", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutNotificationTypesCreatedInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutNotificationTypesInput", - "description": null, - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "ChatMessageReadedConnection", + "description": "A connection to a list of items.", + "fields": [ { - "name": "connect", - "description": null, + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - } + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "set", - "description": null, + "name": "edges", + "description": "A list of edges.", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", + "kind": "OBJECT", + "name": "ChatMessageReadedEdge", "ofType": null } } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "disconnect", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - } + "kind": "OBJECT", + "name": "AggregateChatMessageReaded", + "ofType": null } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ChatMessageReadedEdge", + "description": "An edge in a connection.", + "fields": [ { - "name": "updateMany", - "description": null, + "name": "node", + "description": "The item at the end of the edge.", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithWhereNestedInput", - "ofType": null - } + "kind": "OBJECT", + "name": "ChatMessageReaded", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "deleteMany", - "description": null, + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserScalarWhereInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutNotificationTypesCreatedInput", + "kind": "OBJECT", + "name": "AggregateChatMessageReaded", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "connect", + "name": "count", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "ChatRoomConnection", + "description": "A connection to a list of items.", + "fields": [ { - "name": "name", - "description": null, + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "code", - "description": null, + "name": "edges", + "description": "A list of edges.", + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChatRoomEdge", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "comment", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AggregateChatRoom", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ChatRoomEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "node", + "description": "The item at the end of the edge.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChatRoom", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "oldID", - "description": null, + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutCreatedByInput", + "kind": "OBJECT", + "name": "AggregateChatRoom", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "connect", + "name": "count", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "NoticeConnection", + "description": "A connection to a list of items.", + "fields": [ { - "name": "set", - "description": null, + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeWhereUniqueInput", - "ofType": null - } + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "disconnect", - "description": null, + "name": "edges", + "description": "A list of edges.", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeWhereUniqueInput", + "kind": "OBJECT", + "name": "NoticeEdge", "ofType": null } } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updateMany", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithWhereNestedInput", - "ofType": null - } + "kind": "OBJECT", + "name": "AggregateNotice", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "NoticeEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "node", + "description": "The item at the end of the edge.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Notice", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "deleteMany", - "description": null, + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeScalarWhereInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateWithoutCreatedByDataInput", + "kind": "OBJECT", + "name": "AggregateNotice", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "name", + "name": "count", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "NotificationTypeConnection", + "description": "A connection to a list of items.", + "fields": [ { - "name": "code", - "description": null, + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "comment", - "description": null, + "name": "edges", + "description": "A list of edges.", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "NotificationTypeEdge", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "oldID", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AggregateNotificationType", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "NotificationTypeEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "node", + "description": "The item at the end of the edge.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "NotificationType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Users", - "description": null, + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutNotificationTypesInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateWithoutUsersDataInput", + "kind": "OBJECT", + "name": "AggregateNotificationType", "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, + "fields": [ { - "name": "code", + "name": "count", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ResourceTagConnection", + "description": "A connection to a list of items.", + "fields": [ { - "name": "comment", - "description": null, + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "oldID", - "description": null, + "name": "edges", + "description": "A list of edges.", + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceTagEdge", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutNotificationTypesCreatedInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AggregateResourceTag", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateWithWhereUniqueWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "ResourceTagEdge", + "description": "An edge in a connection.", + "fields": [ { - "name": "where", - "description": null, + "name": "node", + "description": "The item at the end of the edge.", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeWhereUniqueInput", + "kind": "OBJECT", + "name": "ResourceTag", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", - "description": null, + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateWithoutCreatedByDataInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateWithWhereUniqueWithoutUsersInput", + "kind": "OBJECT", + "name": "AggregateResourceTag", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "where", + "name": "count", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeWhereUniqueInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TagConnection", + "description": "A connection to a list of items.", + "fields": [ + { + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", + "name": "edges", + "description": "A list of edges.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TagEdge", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "aggregate", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateWithoutUsersDataInput", + "kind": "OBJECT", + "name": "AggregateTag", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpsertWithWhereUniqueWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "TagEdge", + "description": "An edge in a connection.", + "fields": [ { - "name": "where", - "description": null, + "name": "node", + "description": "The item at the end of the edge.", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeWhereUniqueInput", + "kind": "OBJECT", + "name": "Tag", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpsertWithWhereUniqueWithoutUsersInput", + "kind": "OBJECT", + "name": "AggregateTag", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "where", + "name": "count", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeWhereUniqueInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "PlayerConnection", + "name": "GameConnection", "description": "A connection to a list of items.", "fields": [ { @@ -219680,7 +66034,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PlayerEdge", + "name": "GameEdge", "ofType": null } } @@ -219697,7 +66051,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AggregatePlayer", + "name": "AggregateGame", "ofType": null } }, @@ -219712,7 +66066,7 @@ }, { "kind": "OBJECT", - "name": "PlayerEdge", + "name": "GameEdge", "description": "An edge in a connection.", "fields": [ { @@ -219724,7 +66078,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Player", + "name": "Game", "ofType": null } }, @@ -219754,800 +66108,785 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "PlayerCreateWithoutInventoryInput", + "kind": "OBJECT", + "name": "AggregateGame", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "id", + "name": "count", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GameResultConnection", + "description": "A connection to a list of items.", + "fields": [ { - "name": "isAdmin", - "description": null, + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "PageInfo", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "gamemode", - "description": null, + "name": "edges", + "description": "A list of edges.", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "Gamemode", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GameResultEdge", + "ofType": null + } } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "lastLogin", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AggregateGameResult", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GameResultEdge", + "description": "An edge in a connection.", + "fields": [ { - "name": "x", - "description": null, + "name": "node", + "description": "The item at the end of the edge.", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "GameResult", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "y", - "description": null, + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AggregateGameResult", + "description": null, + "fields": [ { - "name": "z", + "name": "count", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TournamentConnection", + "description": "A connection to a list of items.", + "fields": [ { - "name": "dirx", - "description": null, + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "PageInfo", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "diry", - "description": null, + "name": "edges", + "description": "A list of edges.", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TournamentEdge", + "ofType": null + } } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "user", + "name": "aggregate", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "kind": "OBJECT", + "name": "AggregateTournament", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TournamentEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "node", + "description": "The item at the end of the edge.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Tournament", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "world", - "description": null, + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WorldCreateOneWithoutPlayersInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "WorldCreateOneWithoutPlayersInput", + "kind": "OBJECT", + "name": "AggregateTournament", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "connect", + "name": "count", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "WorldWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "PlayerCreateWithoutWorldInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, + "kind": "OBJECT", + "name": "TournamentGroupConnection", + "description": "A connection to a list of items.", + "fields": [ { - "name": "isAdmin", - "description": null, + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "PageInfo", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "gamemode", - "description": null, + "name": "edges", + "description": "A list of edges.", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "Gamemode", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TournamentGroupEdge", + "ofType": null + } } }, - "defaultValue": null - }, - { - "name": "lastLogin", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "x", + "name": "aggregate", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "AggregateTournamentGroup", "ofType": null } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TournamentGroupEdge", + "description": "An edge in a connection.", + "fields": [ { - "name": "y", - "description": null, + "name": "node", + "description": "The item at the end of the edge.", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "TournamentGroup", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "z", - "description": null, + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AggregateTournamentGroup", + "description": null, + "fields": [ { - "name": "dirx", + "name": "count", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TourneyConnection", + "description": "A connection to a list of items.", + "fields": [ { - "name": "diry", - "description": null, + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "PageInfo", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "user", - "description": null, + "name": "edges", + "description": "A list of edges.", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TourneyEdge", + "ofType": null + } } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "inventory", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "InventoryCreateOneWithoutPlayerInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AggregateTourney", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "PlayerUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "isAdmin", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gamemode", - "description": null, - "type": { - "kind": "ENUM", - "name": "Gamemode", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lastLogin", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "x", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "y", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "z", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, + "kind": "OBJECT", + "name": "TourneyEdge", + "description": "An edge in a connection.", + "fields": [ { - "name": "dirx", - "description": null, + "name": "node", + "description": "The item at the end of the edge.", + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Tourney", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "diry", - "description": null, + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "PlayerUpdateWithoutInventoryDataInput", + "kind": "OBJECT", + "name": "AggregateTourney", "description": null, - "fields": null, - "inputFields": [ - { - "name": "isAdmin", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gamemode", - "description": null, - "type": { - "kind": "ENUM", - "name": "Gamemode", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lastLogin", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "x", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "y", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "z", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dirx", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "diry", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredInput", - "ofType": null - }, - "defaultValue": null - }, + "fields": [ { - "name": "world", + "name": "count", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateOneRequiredWithoutPlayersInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "PlayerUpdateWithoutWorldDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "isAdmin", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gamemode", - "description": null, - "type": { - "kind": "ENUM", - "name": "Gamemode", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lastLogin", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "x", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "y", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "z", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dirx", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, + "kind": "OBJECT", + "name": "VoteConnection", + "description": "A connection to a list of items.", + "fields": [ { - "name": "diry", - "description": null, + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "user", - "description": null, + "name": "edges", + "description": "A list of edges.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "VoteEdge", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "inventory", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "InventoryUpdateOneWithoutPlayerInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AggregateVote", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "PlayerUpdateWithWhereUniqueWithoutWorldInput", - "description": null, - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "VoteEdge", + "description": "An edge in a connection.", + "fields": [ { - "name": "where", - "description": null, + "name": "node", + "description": "The item at the end of the edge.", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "PlayerWhereUniqueInput", + "kind": "OBJECT", + "name": "Vote", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", - "description": null, + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "PlayerUpdateWithoutWorldDataInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "PlayerUpsertWithWhereUniqueWithoutWorldInput", + "kind": "OBJECT", + "name": "AggregateVote", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "where", + "name": "count", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "PlayerWhereUniqueInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "CallRequestConnection", + "description": "A connection to a list of items.", + "fields": [ { - "name": "connect", - "description": null, + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "edges", + "description": "A list of edges.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "PositionWhereUniqueInput", + "kind": "OBJECT", + "name": "CallRequestEdge", "ofType": null } } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutUsersInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "connect", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PositionWhereUniqueInput", - "ofType": null - } + "kind": "OBJECT", + "name": "AggregateCallRequest", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "PositionCreateWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, + "kind": "OBJECT", + "name": "CallRequestEdge", + "description": "An edge in a connection.", + "fields": [ { - "name": "code", - "description": null, + "name": "node", + "description": "The item at the end of the edge.", + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CallRequest", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", - "description": null, + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -220557,997 +66896,1275 @@ "ofType": null } }, - "defaultValue": null - }, - { - "name": "Users", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutPositionsInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "PositionCreateWithoutUsersInput", + "kind": "OBJECT", + "name": "AggregateCallRequest", "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, + "fields": [ { - "name": "name", + "name": "count", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutPositionsCreatedInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "PositionScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "BeerConnection", + "description": "A connection to a list of items.", + "fields": [ { - "name": "AND", - "description": "Logical AND on all given filters.", + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PositionScalarWhereInput", - "ofType": null - } + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", + "name": "edges", + "description": "A list of edges.", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "PositionScalarWhereInput", + "kind": "OBJECT", + "name": "BeerEdge", "ofType": null } } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + "name": "aggregate", + "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PositionScalarWhereInput", - "ofType": null - } + "kind": "OBJECT", + "name": "AggregateBeer", + "ofType": null } }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "BeerEdge", + "description": "An edge in a connection.", + "fields": [ { - "name": "id_in", - "description": "All values that are contained in given list.", + "name": "node", + "description": "The item at the end of the edge.", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "OBJECT", + "name": "Beer", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "id_not_in", - "description": "All values that are not contained in given list.", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "All values not containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "All values starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "All values ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AggregateBeer", + "description": null, + "fields": [ { - "name": "createdAt", + "name": "count", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CommentConnection", + "description": "A connection to a list of items.", + "fields": [ { - "name": "createdAt_in", - "description": "All values that are contained in given list.", + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", + "name": "edges", + "description": "A list of edges.", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "OBJECT", + "name": "CommentEdge", "ofType": null } } }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", + "name": "aggregate", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AggregateComment", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CommentEdge", + "description": "An edge in a connection.", + "fields": [ { - "name": "createdAt_gt", - "description": "All values greater than the given value.", + "name": "node", + "description": "The item at the end of the edge.", + "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Comment", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AggregateComment", + "description": null, + "fields": [ { - "name": "updatedAt", + "name": "count", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PlaceConnection", + "description": "A connection to a list of items.", + "fields": [ { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", + "name": "edges", + "description": "A list of edges.", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "OBJECT", + "name": "PlaceEdge", "ofType": null } } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", + "name": "aggregate", + "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "OBJECT", + "name": "AggregatePlace", + "ofType": null } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TopicConnection", + "description": "A connection to a list of items.", + "fields": [ { - "name": "updatedAt_lt", - "description": "All values less than the given value.", + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", + "name": "edges", + "description": "A list of edges.", + "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TopicEdge", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", + "name": "aggregate", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AggregateTopic", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TopicEdge", + "description": "An edge in a connection.", + "fields": [ { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", + "name": "node", + "description": "The item at the end of the edge.", + "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Topic", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "code", - "description": null, + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AggregateTopic", + "description": null, + "fields": [ { - "name": "code_not", - "description": "All values that are not equal to given value.", + "name": "count", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EthBlockConnection", + "description": "A connection to a list of items.", + "fields": [ { - "name": "code_in", - "description": "All values that are contained in given list.", + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "code_not_in", - "description": "All values that are not contained in given list.", + "name": "edges", + "description": "A list of edges.", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "EthBlockEdge", "ofType": null } } }, - "defaultValue": null - }, - { - "name": "code_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "code_lte", - "description": "All values less than or equal the given value.", + "name": "aggregate", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AggregateEthBlock", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EthBlockEdge", + "description": "An edge in a connection.", + "fields": [ { - "name": "code_gt", - "description": "All values greater than the given value.", + "name": "node", + "description": "The item at the end of the edge.", + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EthBlock", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "code_gte", - "description": "All values greater than or equal the given value.", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AggregateEthBlock", + "description": null, + "fields": [ { - "name": "code_contains", - "description": "All values containing the given string.", + "name": "count", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EthContractSourceConnection", + "description": "A connection to a list of items.", + "fields": [ { - "name": "code_not_contains", - "description": "All values not containing the given string.", + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "code_starts_with", - "description": "All values starting with the given string.", + "name": "edges", + "description": "A list of edges.", + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EthContractSourceEdge", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "code_not_starts_with", - "description": "All values not starting with the given string.", + "name": "aggregate", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AggregateEthContractSource", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EthContractSourceEdge", + "description": "An edge in a connection.", + "fields": [ { - "name": "code_ends_with", - "description": "All values ending with the given string.", + "name": "node", + "description": "The item at the end of the edge.", + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EthContractSource", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "code_not_ends_with", - "description": "All values not ending with the given string.", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AggregateEthContractSource", + "description": null, + "fields": [ { - "name": "name", + "name": "count", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UserConnection", + "description": "A connection to a list of items.", + "fields": [ { - "name": "name_in", - "description": "All values that are contained in given list.", + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_not_in", - "description": "All values that are not contained in given list.", + "name": "edges", + "description": "A list of edges.", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "UserEdge", "ofType": null } } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_lt", - "description": "All values less than the given value.", + "name": "aggregate", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AggregateUser", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UserEdge", + "description": "An edge in a connection.", + "fields": [ { - "name": "name_lte", - "description": "All values less than or equal the given value.", + "name": "node", + "description": "The item at the end of the edge.", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_gt", - "description": "All values greater than the given value.", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AggregateUser", + "description": null, + "fields": [ { - "name": "name_gte", - "description": "All values greater than or equal the given value.", + "name": "count", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ChatMessageConnection", + "description": "A connection to a list of items.", + "fields": [ { - "name": "name_contains", - "description": "All values containing the given string.", + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_not_contains", - "description": "All values not containing the given string.", + "name": "edges", + "description": "A list of edges.", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChatMessageEdge", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_starts_with", - "description": "All values starting with the given string.", + "name": "aggregate", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AggregateChatMessage", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ChatMessageEdge", + "description": "An edge in a connection.", + "fields": [ { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", + "name": "node", + "description": "The item at the end of the edge.", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChatMessage", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_ends_with", - "description": "All values ending with the given string.", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AggregateChatMessage", + "description": null, + "fields": [ { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", + "name": "count", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyDataInput", + "kind": "OBJECT", + "name": "ethNet", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "code", + "name": "id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isListening", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "peerCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "networkType", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyMutationInput", + "kind": "OBJECT", + "name": "EthPersonalAccount", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "code", + "name": "address", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "balance", "description": null, + "args": [ + { + "name": "convert", + "description": null, + "type": { + "kind": "ENUM", + "name": "EthAmountConvert", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutCreatedByInput", + "kind": "OBJECT", + "name": "ethSyncState", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "connect", - "description": null, + "name": "startingBlock", + "description": "The block number where the sync started", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PositionWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "set", - "description": null, + "name": "currentBlock", + "description": "The block number where at which block the node currently synced to already", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PositionWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "disconnect", - "description": null, + "name": "highestBlock", + "description": "The estimated block number to sync to", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PositionWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updateMany", - "description": null, + "name": "knownStates", + "description": "The estimated states to download", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithWhereNestedInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "deleteMany", - "description": null, + "name": "pulledStates", + "description": "The already downloaded states", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PositionScalarWhereInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithWhereNestedInput", + "name": "EthGetBlockWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "where", + "name": "hash", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PositionScalarWhereInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "data", + "name": "number", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyDataInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null } @@ -221558,389 +68175,902 @@ }, { "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutUsersInput", + "name": "EthGetTransactionWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "connect", + "name": "hash", "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PositionWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Mutation", + "description": null, + "fields": [ { - "name": "set", + "name": "createTopicProcessor", "description": null, + "args": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TopicCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PositionWhereUniqueInput", - "ofType": null - } + "kind": "OBJECT", + "name": "TopicResponse", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "disconnect", + "name": "updateTopicProcessor", "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TopicWhereUniqueInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TopicUpdateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PositionWhereUniqueInput", - "ofType": null - } + "kind": "OBJECT", + "name": "TopicResponse", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updateMany", + "name": "updatePlaceData", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PlaceWhereUniqueInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "object_data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Json", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithWhereNestedInput", - "ofType": null - } + "kind": "OBJECT", + "name": "Place", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "deleteMany", + "name": "updatePlaceProcessor", "description": null, + "args": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PlaceUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PlaceWhereUniqueInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "kind": "OBJECT", + "name": "PlaceResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateBeerProcessor", + "description": null, + "args": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BeerUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { "kind": "INPUT_OBJECT", - "name": "PositionScalarWhereInput", + "name": "BeerWhereUniqueInput", "ofType": null - } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BeerPayload", + "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateWithoutCreatedByDataInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "code", + "name": "createBeerProcessor", "description": null, + "args": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BeerCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BeerPayload", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "togglePlaceBeer", "description": null, + "args": [ + { + "name": "placeId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "beerId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "active", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Place", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Users", + "name": "updatePlaceBeerProcessor", "description": null, + "args": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PlaceBeerUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PlaceBeerWhereUniqueInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutPositionsInput", + "kind": "OBJECT", + "name": "PlaceBeerPayload", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateWithoutUsersDataInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "code", + "name": "createPlaceProcessor", "description": null, + "args": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PlaceCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PlacePayload", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "createUserTarif", "description": null, + "args": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserTarifCreateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "promoCode", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserTarif", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "createTarifRequest", "description": null, + "args": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TarifRequestCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutPositionsCreatedInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TarifRequest", + "ofType": null + } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateWithWhereUniqueWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "where", + "name": "createCommentProcessor", "description": null, + "args": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CommentCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "PositionWhereUniqueInput", + "kind": "OBJECT", + "name": "CommentResponse", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", + "name": "updateCommentProcessor", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CommentWhereUniqueInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CommentUpdateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateWithoutCreatedByDataInput", + "kind": "OBJECT", + "name": "CommentResponse", "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateWithWhereUniqueWithoutUsersInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "where", + "name": "createCity", "description": null, + "args": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CityCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "PositionWhereUniqueInput", + "kind": "OBJECT", + "name": "City", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", + "name": "updateCity", + "description": null, + "args": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CityUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CityWhereUniqueInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "City", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "singleUpload", + "description": null, + "args": [ + { + "name": "file", + "description": "Deprecated. Use SingleUploadInput instead.", + "type": { + "kind": "SCALAR", + "name": "Upload", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "data", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SingleUploadInput", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "File", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "multipleUpload", + "description": null, + "args": [ + { + "name": "files", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Upload", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "File", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "signup", "description": null, + "args": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateWithoutUsersDataInput", + "kind": "OBJECT", + "name": "AuthPayload", "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PositionUpsertWithWhereUniqueWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "where", + "name": "signin", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SigninDataInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "PositionWhereUniqueInput", + "kind": "OBJECT", + "name": "AuthPayload", "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PositionUpsertWithWhereUniqueWithoutUsersInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "where", + "name": "updateUserProcessor", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserUpdateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "PositionWhereUniqueInput", + "kind": "OBJECT", + "name": "UserResponse", "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "connect", + "name": "resetPasswordProcessor", "description": null, + "args": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResetPasswordInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", - "ofType": null - } + "kind": "OBJECT", + "name": "AuthPayload", + "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutPrismaUsersInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "connect", + "name": "createResetPasswordProcessor", "description": null, + "args": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResetPasswordCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", - "ofType": null - } + "kind": "OBJECT", + "name": "ResetPasswordResponse", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "ProjectCreateWithoutChatRoomInput", + "name": "TopicCreateInput", "description": null, "fields": null, "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, { "name": "name", "description": null, @@ -221956,27 +69086,27 @@ "defaultValue": null }, { - "name": "domain", + "name": "editor_content", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "description", + "name": "published", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "url", + "name": "description", "description": null, "type": { "kind": "SCALAR", @@ -221984,183 +69114,172 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "sequence", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TopicResponse", + "description": null, + "fields": [ { - "name": "content", + "name": "success", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "contentText", + "name": "message", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "ProjectStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "public", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "ProjectType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaTemplates", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TemplateCreateManyWithoutPrismaProjectInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaUsers", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutPrismaProjectsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaResources", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutPrismaProjectInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Members", + "name": "errors", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutProjectInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Error", + "ofType": null + } + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "data", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutProjectsCreatedInput", + "kind": "OBJECT", + "name": "Topic", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Error", + "description": null, + "fields": [ { - "name": "ProjectTasks", + "name": "key", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskCreateManyWithoutProjectInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Team", + "name": "message", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutProjectsInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TopicUpdateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Customers", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutOrderedProjectsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Image", + "name": "editor_content", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateOneInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "Resource", + "name": "published", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutProjectInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "description", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutProjectInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null @@ -222172,37 +69291,13 @@ }, { "kind": "INPUT_OBJECT", - "name": "ProjectCreateWithoutCreatedByInput", + "name": "PlaceUpdateInput", "description": null, "fields": null, "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, { "name": "name", "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "domain", - "description": null, "type": { "kind": "SCALAR", "name": "String", @@ -222221,7 +69316,7 @@ "defaultValue": null }, { - "name": "url", + "name": "address", "description": null, "type": { "kind": "SCALAR", @@ -222231,27 +69326,27 @@ "defaultValue": null }, { - "name": "sequence", + "name": "lng", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "content", + "name": "lat", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "contentText", + "name": "website", "description": null, "type": { "kind": "SCALAR", @@ -222261,151 +69356,151 @@ "defaultValue": null }, { - "name": "status", + "name": "phone", "description": null, "type": { - "kind": "ENUM", - "name": "ProjectStatus", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "public", + "name": "work_hours", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "metro", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "type", + "name": "content", "description": null, "type": { - "kind": "ENUM", - "name": "ProjectType", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "PrismaTemplates", + "name": "schedules", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TemplateCreateManyWithoutPrismaProjectInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "PrismaUsers", + "name": "url_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutPrismaProjectsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PrismaResources", + "name": "image", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutPrismaProjectInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Members", + "name": "is_bar", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutProjectInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "ProjectTasks", + "name": "is_shop", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskCreateManyWithoutProjectInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Team", + "name": "is_brewery", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutProjectsInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Customers", + "name": "active", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutOrderedProjectsInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "ChatRoom", + "name": "email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateOneWithoutProjectInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Image", + "name": "best", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateOneInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Resource", + "name": "Owner", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutProjectInput", + "name": "UserUpdateOneWithoutPlacesInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "gallery", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutProjectInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null @@ -222417,282 +69512,109 @@ }, { "kind": "INPUT_OBJECT", - "name": "ProjectCreateWithoutCustomersInput", + "name": "UserUpdateOneWithoutPlacesInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PlaceResponse", + "description": null, + "fields": [ { - "name": "name", + "name": "success", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, - "defaultValue": null - }, - { - "name": "domain", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sequence", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "content", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "contentText", + "name": "message", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "ProjectStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "public", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "ProjectType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaTemplates", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TemplateCreateManyWithoutPrismaProjectInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaUsers", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutPrismaProjectsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaResources", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutPrismaProjectInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Members", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutProjectInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutProjectsCreatedInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ProjectTasks", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskCreateManyWithoutProjectInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Team", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutProjectsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ChatRoom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateOneWithoutProjectInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Image", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateOneInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Resource", + "name": "errors", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutProjectInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Error", + "ofType": null + } + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "EthAccounts", + "name": "data", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutProjectInput", + "kind": "OBJECT", + "name": "Place", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "ProjectCreateWithoutEthAccountsInput", + "name": "BeerUpdateInput", "description": null, "fields": null, "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, { "name": "name", "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "domain", - "description": null, "type": { "kind": "SCALAR", "name": "String", @@ -222711,37 +69633,37 @@ "defaultValue": null }, { - "name": "url", + "name": "editor_content", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "sequence", + "name": "country", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "content", + "name": "image", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "contentText", + "name": "manufacturer", "description": null, "type": { "kind": "SCALAR", @@ -222751,27 +69673,27 @@ "defaultValue": null }, { - "name": "status", + "name": "region", "description": null, "type": { - "kind": "ENUM", - "name": "ProjectStatus", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "public", + "name": "manufacture_years", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "container", "description": null, "type": { "kind": "SCALAR", @@ -222781,121 +69703,111 @@ "defaultValue": null }, { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "ProjectType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaTemplates", + "name": "alcohol", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TemplateCreateManyWithoutPrismaProjectInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PrismaUsers", + "name": "wort_percent", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutPrismaProjectsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PrismaResources", + "name": "components", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutPrismaProjectInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Members", + "name": "bitter", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutProjectInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "type_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutProjectsCreatedInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "ProjectTasks", + "name": "color", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskCreateManyWithoutProjectInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Team", + "name": "is_request", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutProjectsInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Customers", + "name": "rating", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutOrderedProjectsInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "ChatRoom", + "name": "gallery", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateOneWithoutProjectInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "Image", + "name": "filtered", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateOneInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Resource", + "name": "pasteurized", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutProjectInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null @@ -222906,87 +69818,108 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateWithoutMembersInput", + "kind": "OBJECT", + "name": "BeerPayload", "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, + "fields": [ { - "name": "name", + "name": "success", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "domain", + "name": "message", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description", + "name": "errors", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Error", + "ofType": null + } + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "url", + "name": "data", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Beer", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "BeerCreateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "sequence", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "content", + "name": "url_name", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "contentText", + "name": "description", "description": null, "type": { "kind": "SCALAR", @@ -222996,192 +69929,77 @@ "defaultValue": null }, { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "ProjectStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "public", + "name": "editor_content", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "country", "description": null, "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "ProjectType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaTemplates", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TemplateCreateManyWithoutPrismaProjectInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaUsers", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutPrismaProjectsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaResources", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutPrismaProjectInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutProjectsCreatedInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ProjectTasks", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskCreateManyWithoutProjectInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Team", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutProjectsInput", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Customers", + "name": "image", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutOrderedProjectsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ChatRoom", + "name": "manufacturer", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateOneWithoutProjectInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Image", + "name": "region", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Resource", + "name": "manufacture_years", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutProjectInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutProjectInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateWithoutPrismaResourcesInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", + "name": "container", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "domain", + "name": "alcohol", "description": null, "type": { "kind": "SCALAR", @@ -223191,7 +70009,7 @@ "defaultValue": null }, { - "name": "description", + "name": "wort_percent", "description": null, "type": { "kind": "SCALAR", @@ -223201,7 +70019,7 @@ "defaultValue": null }, { - "name": "url", + "name": "components", "description": null, "type": { "kind": "SCALAR", @@ -223211,7 +70029,7 @@ "defaultValue": null }, { - "name": "sequence", + "name": "bitter", "description": null, "type": { "kind": "SCALAR", @@ -223221,17 +70039,17 @@ "defaultValue": null }, { - "name": "content", + "name": "type_id", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "contentText", + "name": "color", "description": null, "type": { "kind": "SCALAR", @@ -223241,27 +70059,27 @@ "defaultValue": null }, { - "name": "status", + "name": "is_request", "description": null, "type": { - "kind": "ENUM", - "name": "ProjectStatus", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "public", + "name": "rating", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "add_user_id", "description": null, "type": { "kind": "SCALAR", @@ -223271,146 +70089,173 @@ "defaultValue": null }, { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "ProjectType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaTemplates", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TemplateCreateManyWithoutPrismaProjectInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaUsers", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutPrismaProjectsInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Members", + "name": "gallery", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutProjectInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "filtered", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutProjectsCreatedInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "ProjectTasks", + "name": "pasteurized", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskCreateManyWithoutProjectInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PlaceBeerUpdateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Team", + "name": "price", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutProjectsInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PlaceBeerWhereUniqueInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Customers", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutOrderedProjectsInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PlaceBeerPayload", + "description": null, + "fields": [ { - "name": "ChatRoom", + "name": "success", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateOneWithoutProjectInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Image", + "name": "message", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Resource", + "name": "errors", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutProjectInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Error", + "ofType": null + } + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "EthAccounts", + "name": "data", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutProjectInput", + "kind": "OBJECT", + "name": "PlaceBeer", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "ProjectCreateWithoutPrismaTemplatesInput", + "name": "PlaceCreateInput", "description": null, "fields": null, "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, { "name": "name", "description": null, @@ -223426,7 +70271,7 @@ "defaultValue": null }, { - "name": "domain", + "name": "description", "description": null, "type": { "kind": "SCALAR", @@ -223436,7 +70281,7 @@ "defaultValue": null }, { - "name": "description", + "name": "address", "description": null, "type": { "kind": "SCALAR", @@ -223446,37 +70291,37 @@ "defaultValue": null }, { - "name": "url", + "name": "lng", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "sequence", + "name": "lat", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "content", + "name": "website", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "contentText", + "name": "phone", "description": null, "type": { "kind": "SCALAR", @@ -223486,396 +70331,675 @@ "defaultValue": null }, { - "name": "status", + "name": "work_hours", "description": null, "type": { - "kind": "ENUM", - "name": "ProjectStatus", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "public", + "name": "metro", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "content", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "type", + "name": "schedules", "description": null, "type": { - "kind": "ENUM", - "name": "ProjectType", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "PrismaUsers", + "name": "url_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutPrismaProjectsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PrismaResources", + "name": "image", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutPrismaProjectInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Members", + "name": "is_bar", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutProjectInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "is_shop", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutProjectsCreatedInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "ProjectTasks", + "name": "is_brewery", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskCreateManyWithoutProjectInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Team", + "name": "active", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutProjectsInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Customers", + "name": "email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutOrderedProjectsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ChatRoom", + "name": "best", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateOneWithoutProjectInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Image", + "name": "gallery", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateOneInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PlacePayload", + "description": null, + "fields": [ + { + "name": "success", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Resource", + "name": "message", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutProjectInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "EthAccounts", + "name": "errors", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutProjectInput", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Error", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "data", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Place", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "ProjectCreateWithoutPrismaUsersInput", + "name": "UserTarifCreateInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "dateTill", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "User", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutTarifsInput", "ofType": null } }, "defaultValue": null }, { - "name": "domain", + "name": "Tarif", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TarifCreateOneWithoutUserTarifsInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutTarifsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "description", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TarifCreateOneWithoutUserTarifsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "url", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "TarifWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TarifWhereUniqueInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "sequence", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TarifRequestCreateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "content", + "name": "executed", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "contentText", + "name": "User", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "status", + "name": "Tarif", "description": null, "type": { - "kind": "ENUM", - "name": "ProjectStatus", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TarifCreateOneInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "public", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TarifCreateOneInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "oldID", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "TarifWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TarifRequest", + "description": null, + "fields": [ { - "name": "type", + "name": "id", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "ProjectType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "PrismaTemplates", + "name": "User", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "TemplateCreateManyWithoutPrismaProjectInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "PrismaResources", + "name": "Tarif", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TarifWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutPrismaProjectInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Tarif", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Members", + "name": "createdAt", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutProjectInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "executed", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutProjectsCreatedInput", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CommentCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "object_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "ProjectTasks", + "name": "type_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskCreateManyWithoutProjectInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Team", + "name": "parent", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutProjectsInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Customers", + "name": "editor_content", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutOrderedProjectsInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CommentResponse", + "description": null, + "fields": [ + { + "name": "success", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ChatRoom", + "name": "message", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateOneWithoutProjectInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Image", + "name": "errors", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateOneInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Error", + "ofType": null + } + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Resource", + "name": "data", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutProjectInput", + "kind": "OBJECT", + "name": "Comment", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CommentUpdateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "EthAccounts", + "name": "editor_content", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutProjectInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null @@ -223887,16 +71011,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "ProjectCreateWithoutProjectTasksInput", + "name": "CityCreateInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "city_id", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null @@ -223916,37 +71040,60 @@ "defaultValue": null }, { - "name": "domain", + "name": "alias", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "description", + "name": "lat", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, "defaultValue": null }, { - "name": "url", + "name": "lng", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CityUpdateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "sequence", + "name": "city_id", "description": null, "type": { "kind": "SCALAR", @@ -223956,17 +71103,17 @@ "defaultValue": null }, { - "name": "content", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "contentText", + "name": "alias", "description": null, "type": { "kind": "SCALAR", @@ -223976,178 +71123,227 @@ "defaultValue": null }, { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "ProjectStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "public", + "name": "lat", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "lng", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Upload", + "description": "The `Upload` scalar type represents a file upload.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SingleUploadInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "type", + "name": "file", "description": null, "type": { - "kind": "ENUM", - "name": "ProjectType", + "kind": "SCALAR", + "name": "Upload", "ofType": null }, "defaultValue": null }, { - "name": "PrismaTemplates", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TemplateCreateManyWithoutPrismaProjectInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PrismaUsers", + "name": "directory", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutPrismaProjectsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserCreateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "PrismaResources", + "name": "username", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutPrismaProjectInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Members", + "name": "email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutProjectInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "fullname", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutProjectsCreatedInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Team", + "name": "password", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutProjectsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AuthPayload", + "description": null, + "fields": [ { - "name": "Customers", + "name": "success", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutOrderedProjectsInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ChatRoom", + "name": "message", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateOneWithoutProjectInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Image", + "name": "errors", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateOneInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Error", + "ofType": null + } + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Resource", + "name": "token", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutProjectInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "EthAccounts", + "name": "data", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutProjectInput", + "kind": "OBJECT", + "name": "User", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "ProjectCreateWithoutResourceInput", + "name": "SigninDataInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", + "name": "password", "description": null, "type": { "kind": "NON_NULL", @@ -224159,9 +71355,20 @@ } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserUpdateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "domain", + "name": "password", "description": null, "type": { "kind": "SCALAR", @@ -224171,7 +71378,7 @@ "defaultValue": null }, { - "name": "description", + "name": "fullname", "description": null, "type": { "kind": "SCALAR", @@ -224181,7 +71388,7 @@ "defaultValue": null }, { - "name": "url", + "name": "image", "description": null, "type": { "kind": "SCALAR", @@ -224191,7 +71398,7 @@ "defaultValue": null }, { - "name": "sequence", + "name": "gender", "description": null, "type": { "kind": "SCALAR", @@ -224201,17 +71408,17 @@ "defaultValue": null }, { - "name": "content", + "name": "birth_date", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "contentText", + "name": "icq", "description": null, "type": { "kind": "SCALAR", @@ -224221,414 +71428,709 @@ "defaultValue": null }, { - "name": "status", + "name": "www", "description": null, "type": { - "kind": "ENUM", - "name": "ProjectStatus", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "public", + "name": "about", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "photo", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UserResponse", + "description": null, + "fields": [ { - "name": "type", + "name": "success", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "ProjectType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "PrismaTemplates", + "name": "message", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TemplateCreateManyWithoutPrismaProjectInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "PrismaUsers", + "name": "errors", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutPrismaProjectsInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Error", + "ofType": null + } + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "PrismaResources", + "name": "data", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutPrismaProjectInput", + "kind": "OBJECT", + "name": "User", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResetPasswordInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Members", + "name": "code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutProjectInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResetPasswordCreateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "CreatedBy", + "name": "code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutProjectsCreatedInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "ProjectTasks", + "name": "password", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskCreateManyWithoutProjectInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Team", + "name": "validTill", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutProjectsInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Customers", + "name": "User", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutOrderedProjectsInput", + "name": "UserCreateOneInput", "ofType": null }, "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ResetPasswordResponse", + "description": null, + "fields": [ + { + "name": "success", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ChatRoom", + "name": "message", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateOneWithoutProjectInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Image", + "name": "errors", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateOneInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Error", + "ofType": null + } + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "EthAccounts", + "name": "data", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutProjectInput", + "kind": "OBJECT", + "name": "ResetPassword", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateWithoutTeamInput", + "kind": "OBJECT", + "name": "ResetPassword", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { "name": "id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "createdAt", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "domain", + "name": "updatedAt", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description", + "name": "code", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "url", + "name": "password", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - }, - { - "name": "sequence", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "content", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "contentText", + "name": "validTill", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "status", + "name": "User", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "ENUM", - "name": "ProjectStatus", + "kind": "OBJECT", + "name": "User", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ { - "name": "public", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Subscription", + "description": null, + "fields": [ { - "name": "oldID", + "name": "route", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RouteSubscriptionWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "RouteSubscriptionPayload", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "type", + "name": "ethTransaction", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "EthTransactionSubscriptionWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "ENUM", - "name": "ProjectType", + "kind": "OBJECT", + "name": "EthTransactionSubscriptionPayload", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "PrismaTemplates", + "name": "chatMessageReaded", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedSubscriptionWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "TemplateCreateManyWithoutPrismaProjectInput", + "kind": "OBJECT", + "name": "ChatMessageReadedSubscriptionPayload", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "PrismaUsers", + "name": "chatRoom", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomSubscriptionWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutPrismaProjectsInput", + "kind": "OBJECT", + "name": "ChatRoomSubscriptionPayload", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "PrismaResources", + "name": "notice", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NoticeSubscriptionWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutPrismaProjectInput", + "kind": "OBJECT", + "name": "NoticeSubscriptionPayload", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Members", + "name": "game", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "GameSubscriptionWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutProjectInput", + "kind": "OBJECT", + "name": "GameSubscriptionPayload", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "gameResult", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "GameResultSubscriptionWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutProjectsCreatedInput", + "kind": "OBJECT", + "name": "GameResultSubscriptionPayload", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ProjectTasks", + "name": "tournament", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TournamentSubscriptionWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskCreateManyWithoutProjectInput", + "kind": "OBJECT", + "name": "TournamentSubscriptionPayload", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Customers", + "name": "tournamentGroup", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TournamentGroupSubscriptionWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutOrderedProjectsInput", + "kind": "OBJECT", + "name": "TournamentGroupSubscriptionPayload", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ChatRoom", + "name": "tourney", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TourneySubscriptionWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateOneWithoutProjectInput", + "kind": "OBJECT", + "name": "TourneySubscriptionPayload", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Image", + "name": "callRequest", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CallRequestSubscriptionWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateOneInput", + "kind": "OBJECT", + "name": "CallRequestSubscriptionPayload", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Resource", + "name": "user", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserSubscriptionWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutProjectInput", + "kind": "OBJECT", + "name": "UserSubscriptionPayload", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "EthAccounts", + "name": "chatMessage", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageSubscriptionWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutProjectInput", + "kind": "OBJECT", + "name": "ChatMessageSubscriptionPayload", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutUserInput", + "name": "RouteSubscriptionWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "connect", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { "kind": "LIST", "name": null, @@ -224637,74 +72139,119 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereUniqueInput", + "name": "RouteSubscriptionWhereInput", "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateWithoutProjectInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RouteSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "status", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "ENUM", - "name": "ProjectMemberStatus", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RouteSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "User", - "description": null, + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutProjectsInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null }, { - "name": "Services", + "name": "node", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ServiceCreateManyWithoutProjectsInput", + "name": "RouteWhereInput", "ofType": null }, "defaultValue": null @@ -224715,169 +72262,219 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateWithoutServicesInput", + "kind": "ENUM", + "name": "MutationType", "description": null, "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "id", + "name": "CREATED", "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "status", + "name": "UPDATED", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "DELETED", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RouteSubscriptionPayload", + "description": null, + "fields": [ + { + "name": "mutation", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "ProjectMemberStatus", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "node", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "kind": "OBJECT", + "name": "Route", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Project", + "name": "updatedFields", "description": null, + "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutMembersInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "User", + "name": "previousValues", "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutProjectsInput", - "ofType": null - } + "kind": "OBJECT", + "name": "RoutePreviousValues", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateWithoutUserInput", + "kind": "OBJECT", + "name": "RoutePreviousValues", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { "name": "id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "status", + "name": "name", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "ProjectMemberStatus", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "path", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Project", + "name": "exact", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutMembersInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Services", + "name": "component", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCreateManyWithoutProjectsInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyMutationInput", + "name": "EthTransactionSubscriptionWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "status", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "ENUM", - "name": "ProjectMemberStatus", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthTransactionSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutUserInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { "kind": "LIST", "name": null, @@ -224886,7 +72483,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereUniqueInput", + "name": "EthTransactionSubscriptionWhereInput", "ofType": null } } @@ -224894,8 +72491,8 @@ "defaultValue": null }, { - "name": "set", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { "kind": "LIST", "name": null, @@ -224904,7 +72501,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereUniqueInput", + "name": "EthTransactionSubscriptionWhereInput", "ofType": null } } @@ -224912,8 +72509,8 @@ "defaultValue": null }, { - "name": "disconnect", - "description": null, + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", "type": { "kind": "LIST", "name": null, @@ -224921,8 +72518,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereUniqueInput", + "kind": "ENUM", + "name": "MutationType", "ofType": null } } @@ -224930,8 +72527,18 @@ "defaultValue": null }, { - "name": "updateMany", - "description": null, + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", "type": { "kind": "LIST", "name": null, @@ -224939,8 +72546,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithWhereNestedInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -224948,8 +72555,8 @@ "defaultValue": null }, { - "name": "deleteMany", - "description": null, + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", "type": { "kind": "LIST", "name": null, @@ -224957,13 +72564,23 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberScalarWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } }, "defaultValue": null + }, + { + "name": "node", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "EthTransactionWhereInput", + "ofType": null + }, + "defaultValue": null } ], "interfaces": null, @@ -224971,342 +72588,382 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateWithoutProjectDataInput", + "kind": "OBJECT", + "name": "EthTransactionSubscriptionPayload", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "status", + "name": "mutation", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "ProjectMemberStatus", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "node", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "kind": "OBJECT", + "name": "EthTransaction", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "User", + "name": "updatedFields", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutProjectsInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Services", + "name": "previousValues", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceUpdateManyWithoutProjectsInput", + "kind": "OBJECT", + "name": "EthTransactionPreviousValues", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateWithoutServicesDataInput", + "kind": "OBJECT", + "name": "EthTransactionPreviousValues", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "status", + "name": "id", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "ProjectMemberStatus", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "createdAt", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "chainId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "amount", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Project", + "name": "input", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneRequiredWithoutMembersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "User", + "name": "index", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutProjectsInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateWithoutUserDataInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "status", + "name": "address", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", "description": null, + "args": [], "type": { "kind": "ENUM", - "name": "ProjectMemberStatus", + "name": "EthTransactionType", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "v", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Project", + "name": "r", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneRequiredWithoutMembersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Services", + "name": "s", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceUpdateManyWithoutProjectsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateWithWhereUniqueWithoutProjectInput", + "name": "ChatMessageReadedSubscriptionWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "where", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedSubscriptionWhereInput", + "ofType": null + } } }, "defaultValue": null }, { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateWithoutProjectDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateWithWhereUniqueWithoutServicesInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereUniqueInput", - "ofType": null + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedSubscriptionWhereInput", + "ofType": null + } } }, "defaultValue": null }, { - "name": "data", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateWithoutServicesDataInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedSubscriptionWhereInput", + "ofType": null + } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateWithWhereUniqueWithoutUserInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", - "description": null, + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } } }, "defaultValue": null }, { - "name": "data", - "description": null, + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateWithoutUserDataInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpsertWithWhereUniqueWithoutProjectInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", - "description": null, + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpsertWithWhereUniqueWithoutServicesInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", - "description": null, + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpsertWithWhereUniqueWithoutUserInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "node", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberWhereUniqueInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedWhereInput", + "ofType": null }, "defaultValue": null } @@ -225317,19 +72974,19 @@ }, { "kind": "OBJECT", - "name": "ProjectTaskConnection", - "description": "A connection to a list of items.", + "name": "ChatMessageReadedSubscriptionPayload", + "description": null, "fields": [ { - "name": "pageInfo", - "description": "Information to aid in pagination.", + "name": "mutation", + "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "PageInfo", + "kind": "ENUM", + "name": "MutationType", "ofType": null } }, @@ -225337,18 +72994,30 @@ "deprecationReason": null }, { - "name": "edges", - "description": "A list of edges.", + "name": "node", + "description": null, "args": [], "type": { - "kind": "NON_NULL", + "kind": "OBJECT", + "name": "ChatMessageReaded", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedFields", + "description": null, + "args": [], + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ProjectTaskEdge", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -225357,17 +73026,13 @@ "deprecationReason": null }, { - "name": "aggregate", + "name": "previousValues", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateProjectTask", - "ofType": null - } + "kind": "OBJECT", + "name": "ChatMessageReadedPreviousValues", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -225380,19 +73045,19 @@ }, { "kind": "OBJECT", - "name": "ProjectTaskEdge", - "description": "An edge in a connection.", + "name": "ChatMessageReadedPreviousValues", + "description": null, "fields": [ { - "name": "node", - "description": "The item at the end of the edge.", + "name": "id", + "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ProjectTask", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -225400,15 +73065,15 @@ "deprecationReason": null }, { - "name": "cursor", - "description": "A cursor for use in pagination.", + "name": "createdAt", + "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null } }, @@ -225423,129 +73088,135 @@ }, { "kind": "INPUT_OBJECT", - "name": "ProjectTaskCreateInput", + "name": "ChatRoomSubscriptionWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomSubscriptionWhereInput", + "ofType": null + } } }, "defaultValue": null }, { - "name": "Project", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutProjectTasksInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomSubscriptionWhereInput", + "ofType": null + } } }, "defaultValue": null }, { - "name": "Task", - "description": null, + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateOneWithoutTaskProjectsInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskCreateOneWithoutTaskProjectsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereUniqueInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskCreateWithoutProjectInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null }, { - "name": "Task", + "name": "node", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateOneWithoutTaskProjectsInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "ChatRoomWhereInput", + "ofType": null }, "defaultValue": null } @@ -225555,57 +73226,79 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskCreateWithoutTaskInput", + "kind": "OBJECT", + "name": "ChatRoomSubscriptionPayload", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "id", + "name": "mutation", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ChatRoom", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "updatedFields", "description": null, + "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Project", + "name": "previousValues", "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutProjectTasksInput", - "ofType": null - } + "kind": "OBJECT", + "name": "ChatRoomPreviousValues", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "ProjectTaskPreviousValues", + "name": "ChatRoomPreviousValues", "description": null, "fields": [ { @@ -225655,28 +73348,17 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectTaskSubscriptionPayload", - "description": null, - "fields": [ + }, { - "name": "mutation", + "name": "name", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "MutationType", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -225684,44 +73366,48 @@ "deprecationReason": null }, { - "name": "node", + "name": "description", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "ProjectTask", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedFields", + "name": "image", "description": null, "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "previousValues", + "name": "code", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "ProjectTaskPreviousValues", + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isPublic", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "isDeprecated": false, @@ -225735,7 +73421,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "ProjectTaskSubscriptionWhereInput", + "name": "NoticeSubscriptionWhereInput", "description": null, "fields": null, "inputFields": [ @@ -225750,7 +73436,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ProjectTaskSubscriptionWhereInput", + "name": "NoticeSubscriptionWhereInput", "ofType": null } } @@ -225768,7 +73454,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ProjectTaskSubscriptionWhereInput", + "name": "NoticeSubscriptionWhereInput", "ofType": null } } @@ -225786,7 +73472,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ProjectTaskSubscriptionWhereInput", + "name": "NoticeSubscriptionWhereInput", "ofType": null } } @@ -225862,7 +73548,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTaskWhereInput", + "name": "NoticeWhereInput", "ofType": null }, "defaultValue": null @@ -225873,287 +73559,216 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskUpdateInput", + "kind": "OBJECT", + "name": "NoticeSubscriptionPayload", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "CreatedBy", + "name": "mutation", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Project", + "name": "node", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneRequiredWithoutProjectTasksInput", + "kind": "OBJECT", + "name": "Notice", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Task", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateOneRequiredWithoutTaskProjectsInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneRequiredWithoutProjectTasksInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateOneRequiredWithoutTaskProjectsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskUpdateWithoutProjectDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "CreatedBy", + "name": "updatedFields", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Task", + "name": "previousValues", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateOneRequiredWithoutTaskProjectsInput", + "kind": "OBJECT", + "name": "NoticePreviousValues", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskUpdateWithoutTaskDataInput", + "kind": "OBJECT", + "name": "NoticePreviousValues", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "CreatedBy", + "name": "id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Project", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneRequiredWithoutProjectTasksInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskUpdateWithWhereUniqueWithoutProjectInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", + "name": "createdAt", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskWhereUniqueInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", + "name": "type", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskUpdateWithoutProjectDataInput", + "kind": "ENUM", + "name": "NoticeType", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "ProjectTaskUpdateWithWhereUniqueWithoutTaskInput", + "name": "GameSubscriptionWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "where", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GameSubscriptionWhereInput", + "ofType": null + } } }, "defaultValue": null }, { - "name": "data", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskUpdateWithoutTaskDataInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GameSubscriptionWhereInput", + "ofType": null + } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskUpsertWithWhereUniqueWithoutProjectInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GameSubscriptionWhereInput", + "ofType": null + } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskUpsertWithWhereUniqueWithoutTaskInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", - "description": null, + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", - "description": null, + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", "type": { "kind": "SCALAR", "name": "String", @@ -226162,221 +73777,364 @@ "defaultValue": null }, { - "name": "domain", - "description": null, + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "url", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "GameWhereInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GameSubscriptionPayload", + "description": null, + "fields": [ { - "name": "sequence", + "name": "mutation", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "content", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Json", + "kind": "OBJECT", + "name": "Game", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "contentText", + "name": "updatedFields", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "status", + "name": "previousValues", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "ProjectStatus", + "kind": "OBJECT", + "name": "GamePreviousValues", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GamePreviousValues", + "description": null, + "fields": [ { - "name": "public", + "name": "id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "oldID", + "name": "createdAt", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "type", + "name": "updatedAt", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "ProjectType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "PrismaTemplates", + "name": "name", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TemplateUpdateManyWithoutPrismaProjectInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "PrismaUsers", + "name": "start_date", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutPrismaProjectsInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "PrismaResources", + "name": "end_date", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutPrismaProjectInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Members", + "name": "sequence", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutProjectInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GameResultSubscriptionWhereInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "CreatedBy", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutProjectsCreatedInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GameResultSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "ProjectTasks", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskUpdateManyWithoutProjectInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GameResultSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Team", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutProjectsInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GameResultSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Customers", - "description": null, + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutOrderedProjectsInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "ChatRoom", - "description": null, + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateOneWithoutProjectInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Image", - "description": null, + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateOneInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Resource", - "description": null, + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutProjectInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "node", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutProjectInput", + "name": "GameResultWhereInput", "ofType": null }, "defaultValue": null @@ -226387,135 +74145,180 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyMutationInput", + "kind": "OBJECT", + "name": "GameResultSubscriptionPayload", "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, + "fields": [ { - "name": "domain", + "name": "mutation", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "GameResult", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "url", + "name": "updatedFields", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "sequence", + "name": "previousValues", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "GameResultPreviousValues", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GameResultPreviousValues", + "description": null, + "fields": [ { - "name": "content", + "name": "id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "contentText", + "name": "createdAt", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "status", + "name": "updatedAt", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "ProjectStatus", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "public", + "name": "date", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "oldID", + "name": "name", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "type", + "name": "value", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "ProjectType", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCreatedByInput", + "name": "TournamentSubscriptionWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "connect", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { "kind": "LIST", "name": null, @@ -226524,7 +74327,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", + "name": "TournamentSubscriptionWhereInput", "ofType": null } } @@ -226532,8 +74335,8 @@ "defaultValue": null }, { - "name": "set", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { "kind": "LIST", "name": null, @@ -226542,7 +74345,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", + "name": "TournamentSubscriptionWhereInput", "ofType": null } } @@ -226550,8 +74353,8 @@ "defaultValue": null }, { - "name": "disconnect", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { "kind": "LIST", "name": null, @@ -226560,7 +74363,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", + "name": "TournamentSubscriptionWhereInput", "ofType": null } } @@ -226568,8 +74371,8 @@ "defaultValue": null }, { - "name": "updateMany", - "description": null, + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", "type": { "kind": "LIST", "name": null, @@ -226577,8 +74380,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithWhereNestedInput", + "kind": "ENUM", + "name": "MutationType", "ofType": null } } @@ -226586,8 +74389,18 @@ "defaultValue": null }, { - "name": "deleteMany", - "description": null, + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", "type": { "kind": "LIST", "name": null, @@ -226595,13 +74408,41 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectScalarWhereInput", + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null } } }, "defaultValue": null + }, + { + "name": "node", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TournamentWhereInput", + "ofType": null + }, + "defaultValue": null } ], "interfaces": null, @@ -226609,14 +74450,42 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutPrismaUsersInput", + "kind": "OBJECT", + "name": "TournamentSubscriptionPayload", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "connect", + "name": "mutation", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Tournament", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedFields", "description": null, + "args": [], "type": { "kind": "LIST", "name": null, @@ -226624,17 +74493,125 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "set", + "name": "previousValues", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "TournamentPreviousValues", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TournamentPreviousValues", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "code", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TournamentGroupSubscriptionWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": "Logical AND on all given filters.", "type": { "kind": "LIST", "name": null, @@ -226643,7 +74620,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", + "name": "TournamentGroupSubscriptionWhereInput", "ofType": null } } @@ -226651,8 +74628,8 @@ "defaultValue": null }, { - "name": "disconnect", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { "kind": "LIST", "name": null, @@ -226661,7 +74638,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", + "name": "TournamentGroupSubscriptionWhereInput", "ofType": null } } @@ -226669,8 +74646,8 @@ "defaultValue": null }, { - "name": "updateMany", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { "kind": "LIST", "name": null, @@ -226679,7 +74656,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithWhereNestedInput", + "name": "TournamentGroupSubscriptionWhereInput", "ofType": null } } @@ -226687,8 +74664,8 @@ "defaultValue": null }, { - "name": "deleteMany", - "description": null, + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", "type": { "kind": "LIST", "name": null, @@ -226696,28 +74673,17 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectScalarWhereInput", + "kind": "ENUM", + "name": "MutationType", "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateWithoutChatRoomDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", - "description": null, + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", "type": { "kind": "SCALAR", "name": "String", @@ -226726,785 +74692,1382 @@ "defaultValue": null }, { - "name": "domain", - "description": null, + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "url", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "TournamentGroupWhereInput", "ofType": null }, "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TournamentGroupSubscriptionPayload", + "description": null, + "fields": [ + { + "name": "mutation", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "sequence", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "TournamentGroup", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "content", + "name": "updatedFields", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "contentText", + "name": "previousValues", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "TournamentGroupPreviousValues", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TournamentGroupPreviousValues", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "status", + "name": "createdAt", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "ProjectStatus", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "public", + "name": "updatedAt", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "oldID", + "name": "name", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "type", + "name": "code", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "ProjectType", + "kind": "SCALAR", + "name": "ID", "ofType": null }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TourneySubscriptionWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": "Logical AND on all given filters.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TourneySubscriptionWhereInput", + "ofType": null + } + } + }, "defaultValue": null }, { - "name": "PrismaTemplates", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "INPUT_OBJECT", - "name": "TemplateUpdateManyWithoutPrismaProjectInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TourneySubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "PrismaUsers", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutPrismaProjectsInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TourneySubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "PrismaResources", - "description": null, + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutPrismaProjectInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Members", - "description": null, + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutProjectInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutProjectsCreatedInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "ProjectTasks", - "description": null, + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskUpdateManyWithoutProjectInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Team", + "name": "node", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutProjectsInput", + "name": "TourneyWhereInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TourneySubscriptionPayload", + "description": null, + "fields": [ { - "name": "Customers", + "name": "mutation", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutOrderedProjectsInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Image", + "name": "node", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateOneInput", + "kind": "OBJECT", + "name": "Tourney", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Resource", + "name": "updatedFields", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutProjectInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "EthAccounts", + "name": "previousValues", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutProjectInput", + "kind": "OBJECT", + "name": "TourneyPreviousValues", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateWithoutCreatedByDataInput", + "kind": "OBJECT", + "name": "TourneyPreviousValues", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "name", + "name": "id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "domain", + "name": "createdAt", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description", + "name": "updatedAt", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "url", + "name": "name", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "sequence", + "name": "code", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "content", + "name": "date", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Json", + "name": "DateTime", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "contentText", + "name": "date_till", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CallRequestSubscriptionWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": "Logical AND on all given filters.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CallRequestSubscriptionWhereInput", + "ofType": null + } + } + }, "defaultValue": null }, { - "name": "status", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "ENUM", - "name": "ProjectStatus", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CallRequestSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "public", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CallRequestSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "oldID", - "description": null, + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "type", - "description": null, + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", "type": { - "kind": "ENUM", - "name": "ProjectType", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "PrismaTemplates", - "description": null, + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", "type": { - "kind": "INPUT_OBJECT", - "name": "TemplateUpdateManyWithoutPrismaProjectInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "PrismaUsers", + "name": "node", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutPrismaProjectsInput", + "name": "CallRequestWhereInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CallRequestSubscriptionPayload", + "description": null, + "fields": [ { - "name": "PrismaResources", + "name": "mutation", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutPrismaProjectInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Members", + "name": "node", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutProjectInput", + "kind": "OBJECT", + "name": "CallRequest", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ProjectTasks", + "name": "updatedFields", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskUpdateManyWithoutProjectInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Team", + "name": "previousValues", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutProjectsInput", + "kind": "OBJECT", + "name": "CallRequestPreviousValues", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CallRequestPreviousValues", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Customers", + "name": "called_descriptions", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutOrderedProjectsInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Json", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ChatRoom", + "name": "caller_descriptions", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateOneWithoutProjectInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Json", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Image", + "name": "status", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateOneInput", + "kind": "ENUM", + "name": "CallRequestStatus", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Resource", + "name": "startedAt", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutProjectInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "EthAccounts", + "name": "endedAt", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutProjectInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateWithoutCustomersDataInput", + "name": "UserSubscriptionWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "name", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "domain", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "url", - "description": null, + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "sequence", - "description": null, + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "content", - "description": null, + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "contentText", - "description": null, + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "status", + "name": "node", "description": null, "type": { - "kind": "ENUM", - "name": "ProjectStatus", + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UserSubscriptionPayload", + "description": null, + "fields": [ { - "name": "public", + "name": "mutation", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "oldID", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "User", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatMessageSubscriptionWhereInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "type", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "ENUM", - "name": "ProjectType", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "PrismaTemplates", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "INPUT_OBJECT", - "name": "TemplateUpdateManyWithoutPrismaProjectInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "PrismaUsers", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutPrismaProjectsInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "PrismaResources", - "description": null, + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutPrismaProjectInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Members", - "description": null, + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutProjectInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutProjectsCreatedInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "ProjectTasks", - "description": null, + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskUpdateManyWithoutProjectInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Team", + "name": "node", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutProjectsInput", + "name": "ChatMessageWhereInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ChatMessageSubscriptionPayload", + "description": null, + "fields": [ { - "name": "ChatRoom", + "name": "mutation", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateOneWithoutProjectInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Image", + "name": "node", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateOneInput", + "kind": "OBJECT", + "name": "ChatMessage", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Resource", + "name": "updatedFields", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutProjectInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "EthAccounts", + "name": "previousValues", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutProjectInput", + "kind": "OBJECT", + "name": "ChatMessagePreviousValues", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateWithoutEthAccountsDataInput", + "kind": "OBJECT", + "name": "ChatMessagePreviousValues", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "name", + "name": "id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "domain", + "name": "createdAt", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description", + "name": "updatedAt", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "url", + "name": "content", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Json", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "sequence", + "name": "contentText", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "BeerCreateOneWithoutPlacesInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "content", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", + "kind": "INPUT_OBJECT", + "name": "BeerWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "BeerUpdateOneWithoutPlacesInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "contentText", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "BeerWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthAccountCreateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "status", + "name": "name", "description": null, "type": { - "kind": "ENUM", - "name": "ProjectStatus", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "public", + "name": "description", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "address", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, @@ -227513,47 +76076,47 @@ "description": null, "type": { "kind": "ENUM", - "name": "ProjectType", + "name": "EthAccountType", "ofType": null }, "defaultValue": null }, { - "name": "PrismaTemplates", + "name": "source", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TemplateUpdateManyWithoutPrismaProjectInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PrismaUsers", + "name": "bytecode", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutPrismaProjectsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PrismaResources", + "name": "abi", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutPrismaProjectInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "Members", + "name": "ContractSource", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutProjectInput", + "name": "EthContractSourceCreateOneWithoutAccountsInput", "ofType": null }, "defaultValue": null @@ -227563,67 +76126,78 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutProjectsCreatedInput", + "name": "UserCreateOneWithoutEthAccountsInput", "ofType": null }, "defaultValue": null }, { - "name": "ProjectTasks", + "name": "Transaction", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTaskUpdateManyWithoutProjectInput", + "name": "EthTransactionCreateOneWithoutAccountInput", "ofType": null }, "defaultValue": null }, { - "name": "Team", + "name": "IncomeTransactions", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutProjectsInput", + "name": "EthTransactionCreateManyWithoutReceiverInput", "ofType": null }, "defaultValue": null }, { - "name": "Customers", + "name": "OutcomeTransactions", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutOrderedProjectsInput", + "name": "EthTransactionCreateManyWithoutSenderInput", "ofType": null }, "defaultValue": null }, { - "name": "ChatRoom", + "name": "BlocksMined", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateOneWithoutProjectInput", + "name": "EthBlockCreateManyWithoutMinerInput", "ofType": null }, "defaultValue": null }, { - "name": "Image", + "name": "UserAuthed", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FileUpdateOneInput", + "name": "UserCreateOneInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthContractSourceCreateOneWithoutAccountsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Resource", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutProjectInput", + "name": "EthContractSourceWhereUniqueInput", "ofType": null }, "defaultValue": null @@ -227635,72 +76209,141 @@ }, { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateWithoutMembersDataInput", + "name": "UserCreateOneWithoutEthAccountsInput", "description": null, "fields": null, "inputFields": [ { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthTransactionCreateOneWithoutAccountInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "description", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "EthTransactionWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthTransactionCreateManyWithoutReceiverInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "url", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthTransactionWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthTransactionCreateManyWithoutSenderInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "sequence", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthTransactionWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthBlockCreateManyWithoutMinerInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "content", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthBlockWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthAccountUpdateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "contentText", + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -227710,31 +76353,21 @@ "defaultValue": null }, { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "ProjectStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "public", + "name": "description", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "address", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null @@ -227744,117 +76377,107 @@ "description": null, "type": { "kind": "ENUM", - "name": "ProjectType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaTemplates", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TemplateUpdateManyWithoutPrismaProjectInput", + "name": "EthAccountType", "ofType": null }, "defaultValue": null }, { - "name": "PrismaUsers", + "name": "source", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutPrismaProjectsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PrismaResources", + "name": "bytecode", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutPrismaProjectInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "abi", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutProjectsCreatedInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "ProjectTasks", + "name": "ContractSource", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTaskUpdateManyWithoutProjectInput", + "name": "EthContractSourceUpdateOneWithoutAccountsInput", "ofType": null }, "defaultValue": null }, { - "name": "Team", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutProjectsInput", + "name": "UserUpdateOneWithoutEthAccountsInput", "ofType": null }, "defaultValue": null }, { - "name": "Customers", + "name": "Transaction", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutOrderedProjectsInput", + "name": "EthTransactionUpdateOneWithoutAccountInput", "ofType": null }, "defaultValue": null }, { - "name": "ChatRoom", + "name": "IncomeTransactions", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateOneWithoutProjectInput", + "name": "EthTransactionUpdateManyWithoutReceiverInput", "ofType": null }, "defaultValue": null }, { - "name": "Image", + "name": "OutcomeTransactions", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FileUpdateOneInput", + "name": "EthTransactionUpdateManyWithoutSenderInput", "ofType": null }, "defaultValue": null }, { - "name": "Resource", + "name": "BlocksMined", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutProjectInput", + "name": "EthBlockUpdateManyWithoutMinerInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "UserAuthed", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutProjectInput", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null @@ -227866,92 +76489,84 @@ }, { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateWithoutPrismaResourcesDataInput", + "name": "EthContractSourceUpdateOneWithoutAccountsInput", "description": null, "fields": null, "inputFields": [ { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "EthContractSourceWhereUniqueInput", "ofType": null }, "defaultValue": null }, { - "name": "sequence", + "name": "disconnect", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutEthAccountsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "content", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", "ofType": null }, "defaultValue": null }, { - "name": "contentText", + "name": "disconnect", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthTransactionUpdateOneWithoutAccountInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "status", + "name": "connect", "description": null, "type": { - "kind": "ENUM", - "name": "ProjectStatus", + "kind": "INPUT_OBJECT", + "name": "EthTransactionWhereUniqueInput", "ofType": null }, "defaultValue": null }, { - "name": "public", + "name": "disconnect", "description": null, "type": { "kind": "SCALAR", @@ -227959,133 +76574,240 @@ "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthTransactionUpdateManyWithoutReceiverInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "oldID", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthTransactionWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "type", + "name": "disconnect", "description": null, "type": { - "kind": "ENUM", - "name": "ProjectType", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthTransactionWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthTransactionUpdateManyWithoutSenderInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "PrismaTemplates", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TemplateUpdateManyWithoutPrismaProjectInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthTransactionWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "PrismaUsers", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutPrismaProjectsInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthTransactionWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthBlockUpdateManyWithoutMinerInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Members", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutProjectInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthBlockWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutProjectsCreatedInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthBlockWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "ProjectTasks", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTaskUpdateManyWithoutProjectInput", + "name": "UserWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthTransactionCreateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Team", + "name": "privateKey", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutProjectsInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "Customers", + "name": "type", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutOrderedProjectsInput", + "kind": "ENUM", + "name": "EthTransactionType", "ofType": null }, "defaultValue": null }, { - "name": "ChatRoom", + "name": "to", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateOneWithoutProjectInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Image", + "name": "amount", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateOneInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Resource", + "name": "gasPrice", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutProjectInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "contractSourceId", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutProjectInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null @@ -228097,12 +76819,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateWithoutPrismaTemplatesDataInput", + "name": "LetterUpdateInput", "description": null, "fields": null, "inputFields": [ { - "name": "name", + "name": "email", "description": null, "type": { "kind": "SCALAR", @@ -228112,7 +76834,7 @@ "defaultValue": null }, { - "name": "domain", + "name": "subject", "description": null, "type": { "kind": "SCALAR", @@ -228122,7 +76844,7 @@ "defaultValue": null }, { - "name": "description", + "name": "message", "description": null, "type": { "kind": "SCALAR", @@ -228132,191 +76854,372 @@ "defaultValue": null }, { - "name": "url", + "name": "status", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "LetterStatus", "ofType": null }, "defaultValue": null }, { - "name": "sequence", + "name": "Place", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "PlaceUpdateOneWithoutLettersInput", "ofType": null }, "defaultValue": null }, { - "name": "content", + "name": "rank", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "contentText", + "name": "deleteOnSend", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "status", + "name": "replyTo", "description": null, "type": { - "kind": "ENUM", - "name": "ProjectStatus", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "public", + "name": "returnTo", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PlaceUpdateOneWithoutLettersInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "oldID", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "PlaceWhereUniqueInput", "ofType": null }, "defaultValue": null }, { - "name": "type", + "name": "disconnect", "description": null, "type": { - "kind": "ENUM", - "name": "ProjectType", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "MapPlaceConnectionEdges", + "description": null, + "fields": [ { - "name": "PrismaUsers", + "name": "node", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutPrismaProjectsInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Place", + "ofType": null + } + } + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PlaceCreateOneWithoutBeersInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "PrismaResources", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutPrismaProjectInput", + "name": "PlaceWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PlaceCreateOneWithoutLettersInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Members", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutProjectInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PlaceUpdateOneWithoutBeersInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "CreatedBy", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutProjectsCreatedInput", + "name": "PlaceWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AccountConnection", + "description": "A connection to a list of items.", + "fields": [ { - "name": "ProjectTasks", - "description": null, + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskUpdateManyWithoutProjectInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Team", - "description": null, + "name": "edges", + "description": "A list of edges.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutProjectsInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AccountEdge", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Customers", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutOrderedProjectsInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AggregateAccount", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AccountEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "node", + "description": "The item at the end of the edge.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ChatRoom", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AggregateAccount", + "description": null, + "fields": [ + { + "name": "count", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateOneWithoutProjectInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AccountCreateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Image", + "name": "balance", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateOneInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Resource", + "name": "User", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutProjectInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutAccountInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "Transactions", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutProjectInput", + "name": "TransactionCreateManyWithoutAccountInput", "ofType": null }, "defaultValue": null @@ -228328,457 +77231,730 @@ }, { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateWithoutPrismaUsersDataInput", + "name": "UserCreateOneWithoutAccountInput", "description": null, "fields": null, "inputFields": [ { - "name": "name", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TransactionCreateManyWithoutAccountInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "domain", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TransactionWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TransactionWhereUniqueInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "description", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AccountCreateOneWithoutTransactionsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "url", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "AccountWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AccountWhereUniqueInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "sequence", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AccountCreateOneWithoutUserInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "content", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", + "kind": "INPUT_OBJECT", + "name": "AccountWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AccountCreateWithoutTransactionsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "contentText", + "name": "balance", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "status", + "name": "User", "description": null, "type": { - "kind": "ENUM", - "name": "ProjectStatus", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutAccountInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AccountCreateWithoutUserInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "public", + "name": "balance", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "Transactions", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "TransactionCreateManyWithoutAccountInput", "ofType": null }, "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "AccountOrderByInput", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "type", + "name": "id_DESC", "description": null, - "type": { - "kind": "ENUM", - "name": "ProjectType", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "PrismaTemplates", + "name": "balance_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TemplateUpdateManyWithoutPrismaProjectInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "PrismaResources", + "name": "balance_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutPrismaProjectInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Members", + "name": "updatedAt_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutProjectInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "updatedAt_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutProjectsCreatedInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ProjectTasks", + "name": "createdAt_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskUpdateManyWithoutProjectInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Team", + "name": "createdAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AccountPreviousValues", + "description": null, + "fields": [ + { + "name": "id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutProjectsInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Customers", + "name": "balance", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutOrderedProjectsInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AccountSubscriptionPayload", + "description": null, + "fields": [ { - "name": "ChatRoom", + "name": "mutation", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateOneWithoutProjectInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Image", + "name": "node", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateOneInput", + "kind": "OBJECT", + "name": "Account", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Resource", + "name": "updatedFields", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutProjectInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "EthAccounts", + "name": "previousValues", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutProjectInput", + "kind": "OBJECT", + "name": "AccountPreviousValues", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateWithoutProjectTasksDataInput", + "name": "AccountSubscriptionWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AccountSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AccountSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "url", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AccountSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "sequence", - "description": null, + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "content", - "description": null, + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "contentText", - "description": null, + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "status", - "description": null, + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", "type": { - "kind": "ENUM", - "name": "ProjectStatus", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "public", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "AccountWhereInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AccountUpdateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "oldID", + "name": "balance", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "type", + "name": "User", "description": null, "type": { - "kind": "ENUM", - "name": "ProjectType", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutAccountInput", "ofType": null }, "defaultValue": null }, { - "name": "PrismaTemplates", + "name": "Transactions", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TemplateUpdateManyWithoutPrismaProjectInput", + "name": "TransactionUpdateManyWithoutAccountInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutAccountInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "PrismaUsers", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutPrismaProjectsInput", + "name": "UserWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TransactionUpdateManyWithoutAccountInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "PrismaResources", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutPrismaProjectInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TransactionWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Members", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutProjectInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TransactionWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AccountUpdateOneWithoutTransactionsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "CreatedBy", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutProjectsCreatedInput", + "name": "AccountWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AccountUpdateOneWithoutUserInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Team", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutProjectsInput", + "name": "AccountWhereUniqueInput", "ofType": null }, "defaultValue": null }, { - "name": "Customers", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutOrderedProjectsInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AccountUpdateWithoutTransactionsDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "ChatRoom", + "name": "balance", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateOneWithoutProjectInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Image", + "name": "User", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FileUpdateOneInput", + "name": "UserUpdateOneWithoutAccountInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AccountUpdateWithoutUserDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Resource", + "name": "balance", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutProjectInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "Transactions", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutProjectInput", + "name": "TransactionUpdateManyWithoutAccountInput", "ofType": null }, "defaultValue": null @@ -228789,254 +77965,627 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateWithoutResourceDataInput", + "kind": "OBJECT", + "name": "AggregateChatRoomInvitation", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "name", + "name": "count", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AggregateCity", + "description": null, + "fields": [ { - "name": "domain", + "name": "count", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AggregateCommentType", + "description": null, + "fields": [ { - "name": "description", + "name": "count", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AggregateFile", + "description": null, + "fields": [ { - "name": "url", + "name": "count", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AggregateLetsadsSmsMessageStatus", + "description": null, + "fields": [ { - "name": "sequence", + "name": "count", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AggregateLetsadsSmsMessageStatusItem", + "description": null, + "fields": [ { - "name": "content", + "name": "count", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AggregateLetter", + "description": null, + "fields": [ { - "name": "contentText", + "name": "count", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AggregateLog", + "description": null, + "fields": [ { - "name": "status", + "name": "count", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "ProjectStatus", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AggregateLogedIn", + "description": null, + "fields": [ { - "name": "public", + "name": "count", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AggregatePhoto", + "description": null, + "fields": [ { - "name": "oldID", + "name": "count", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AggregatePlaceBeer", + "description": null, + "fields": [ { - "name": "type", + "name": "count", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "ProjectType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AggregateProject", + "description": null, + "fields": [ { - "name": "PrismaTemplates", + "name": "count", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TemplateUpdateManyWithoutPrismaProjectInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AggregateResetPassword", + "description": null, + "fields": [ { - "name": "PrismaUsers", + "name": "count", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutPrismaProjectsInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AggregateSmsMessage", + "description": null, + "fields": [ { - "name": "PrismaResources", + "name": "count", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutPrismaProjectInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AggregateSmsProvider", + "description": null, + "fields": [ { - "name": "Members", + "name": "count", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutProjectInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AggregateTarif", + "description": null, + "fields": [ { - "name": "CreatedBy", + "name": "count", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutProjectsCreatedInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AggregateTarifRequest", + "description": null, + "fields": [ { - "name": "ProjectTasks", + "name": "count", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskUpdateManyWithoutProjectInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AggregateTeam", + "description": null, + "fields": [ { - "name": "Team", + "name": "count", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutProjectsInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AggregateTransaction", + "description": null, + "fields": [ { - "name": "Customers", + "name": "count", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutOrderedProjectsInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AggregateUserGroup", + "description": null, + "fields": [ { - "name": "ChatRoom", + "name": "count", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateOneWithoutProjectInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AggregateUserTarif", + "description": null, + "fields": [ { - "name": "Image", + "name": "count", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateOneInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "BatchPayload", + "description": null, + "fields": [ { - "name": "EthAccounts", - "description": null, + "name": "count", + "description": "The number of nodes that have been affected by the Batch operation.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutProjectInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Long", + "description": "", + "fields": null, + "inputFields": null, "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateWithoutTeamDataInput", + "name": "BeerCreateWithoutPlacesInput", "description": null, "fields": null, "inputFields": [ { - "name": "name", + "name": "beer_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "domain", + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -229046,7 +78595,7 @@ "defaultValue": null }, { - "name": "description", + "name": "url_name", "description": null, "type": { "kind": "SCALAR", @@ -229056,7 +78605,7 @@ "defaultValue": null }, { - "name": "url", + "name": "description", "description": null, "type": { "kind": "SCALAR", @@ -229066,27 +78615,27 @@ "defaultValue": null }, { - "name": "sequence", + "name": "editor_content", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "content", + "name": "country", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "contentText", + "name": "image", "description": null, "type": { "kind": "SCALAR", @@ -229096,230 +78645,192 @@ "defaultValue": null }, { - "name": "status", + "name": "num_comments", "description": null, "type": { - "kind": "ENUM", - "name": "ProjectStatus", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "public", + "name": "num_photos", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "manufacturer", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "type", + "name": "region", "description": null, "type": { - "kind": "ENUM", - "name": "ProjectType", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PrismaTemplates", + "name": "manufacture_years", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TemplateUpdateManyWithoutPrismaProjectInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PrismaUsers", + "name": "container", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutPrismaProjectsInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "PrismaResources", + "name": "alcohol", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutPrismaProjectInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Members", + "name": "wort_percent", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutProjectInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "components", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutProjectsCreatedInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ProjectTasks", + "name": "bitter", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskUpdateManyWithoutProjectInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Customers", + "name": "type_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutOrderedProjectsInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "ChatRoom", + "name": "color", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateOneWithoutProjectInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Image", + "name": "is_request", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateOneInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Resource", + "name": "rating", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutProjectInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "add_user_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutProjectInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateWithWhereUniqueWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "created_at", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "data", + "name": "gallery", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateWithoutCreatedByDataInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Json", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateWithWhereUniqueWithoutCustomersInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "filtered", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null }, { - "name": "data", + "name": "pasteurized", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateWithoutCustomersDataInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null } @@ -229329,456 +78840,365 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateWithWhereUniqueWithoutPrismaUsersInput", + "kind": "OBJECT", + "name": "BeerPreviousValues", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "where", + "name": "id", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateWithoutPrismaUsersDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateWithWhereUniqueWithoutTeamInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", + "name": "createdAt", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", + "name": "updatedAt", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateWithoutTeamDataInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectUpsertWithWhereUniqueWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "where", + "name": "beer_id", "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectUpsertWithWhereUniqueWithoutCustomersInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "where", + "name": "name", "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectUpsertWithWhereUniqueWithoutPrismaUsersInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "where", + "name": "url_name", "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectUpsertWithWhereUniqueWithoutTeamInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "where", + "name": "description", "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ResetPasswordConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "edges", - "description": "A list of edges.", + "name": "editor_content", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ResetPasswordEdge", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Json", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "aggregate", + "name": "country", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateResetPassword", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ResetPasswordEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ResetPassword", - "ofType": null - } + }, + { + "name": "image", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "cursor", - "description": "A cursor for use in pagination.", + "name": "num_comments", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ResetPasswordOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + }, { - "name": "id_ASC", + "name": "num_photos", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_DESC", + "name": "manufacturer", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt_ASC", + "name": "region", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt_DESC", + "name": "manufacture_years", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedAt_ASC", + "name": "container", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedAt_DESC", + "name": "alcohol", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "code_ASC", + "name": "wort_percent", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "code_DESC", + "name": "components", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "password_ASC", + "name": "bitter", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "password_DESC", + "name": "type_id", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "validTill_ASC", + "name": "color", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "validTill_DESC", + "name": "is_request", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ResetPasswordPreviousValues", - "description": null, - "fields": [ + }, { - "name": "id", + "name": "rating", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt", + "name": "add_user_id", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedAt", + "name": "created_at", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "code", + "name": "gallery", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "Json", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "password", + "name": "filtered", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "validTill", + "name": "pasteurized", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Boolean", "ofType": null }, "isDeprecated": false, @@ -229792,7 +79212,7 @@ }, { "kind": "OBJECT", - "name": "ResetPasswordSubscriptionPayload", + "name": "BeerSubscriptionPayload", "description": null, "fields": [ { @@ -229817,7 +79237,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "ResetPassword", + "name": "Beer", "ofType": null }, "isDeprecated": false, @@ -229849,7 +79269,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "ResetPasswordPreviousValues", + "name": "BeerPreviousValues", "ofType": null }, "isDeprecated": false, @@ -229863,7 +79283,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "ResetPasswordSubscriptionWhereInput", + "name": "BeerSubscriptionWhereInput", "description": null, "fields": null, "inputFields": [ @@ -229878,7 +79298,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ResetPasswordSubscriptionWhereInput", + "name": "BeerSubscriptionWhereInput", "ofType": null } } @@ -229896,7 +79316,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ResetPasswordSubscriptionWhereInput", + "name": "BeerSubscriptionWhereInput", "ofType": null } } @@ -229914,7 +79334,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ResetPasswordSubscriptionWhereInput", + "name": "BeerSubscriptionWhereInput", "ofType": null } } @@ -229990,7 +79410,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResetPasswordWhereInput", + "name": "BeerWhereInput", "ofType": null }, "defaultValue": null @@ -230002,385 +79422,322 @@ }, { "kind": "INPUT_OBJECT", - "name": "ResetPasswordWhereInput", + "name": "BeerUpdateWithoutPlacesDataInput", "description": null, "fields": null, "inputFields": [ { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResetPasswordWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", + "name": "beer_id", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResetPasswordWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + "name": "name", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResetPasswordWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "id", + "name": "url_name", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_not", - "description": "All values that are not equal to given value.", + "name": "description", + "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_in", - "description": "All values that are contained in given list.", + "name": "editor_content", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Json", + "ofType": null }, "defaultValue": null }, { - "name": "id_not_in", - "description": "All values that are not contained in given list.", + "name": "country", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "id_lt", - "description": "All values less than the given value.", + "name": "image", + "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_lte", - "description": "All values less than or equal the given value.", + "name": "num_comments", + "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "id_gt", - "description": "All values greater than the given value.", + "name": "num_photos", + "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "id_gte", - "description": "All values greater than or equal the given value.", + "name": "manufacturer", + "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_contains", - "description": "All values containing the given string.", + "name": "region", + "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_not_contains", - "description": "All values not containing the given string.", + "name": "manufacture_years", + "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_starts_with", - "description": "All values starting with the given string.", + "name": "container", + "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", + "name": "alcohol", + "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_ends_with", - "description": "All values ending with the given string.", + "name": "wort_percent", + "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", + "name": "components", + "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "createdAt", + "name": "bitter", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", + "name": "type_id", + "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_in", - "description": "All values that are contained in given list.", + "name": "color", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", + "name": "is_request", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "createdAt_lt", - "description": "All values less than the given value.", + "name": "rating", + "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", + "name": "add_user_id", + "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_gt", - "description": "All values greater than the given value.", + "name": "created_at", + "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", + "name": "gallery", + "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt", + "name": "filtered", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", + "name": "pasteurized", + "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Boolean", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CallRequestCreateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", + "name": "called_descriptions", + "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "Json", + "ofType": null } }, "defaultValue": null }, { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", + "name": "caller_descriptions", + "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "Json", + "ofType": null } }, "defaultValue": null }, { - "name": "updatedAt_lt", - "description": "All values less than the given value.", + "name": "status", + "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "ENUM", + "name": "CallRequestStatus", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", + "name": "startedAt", + "description": null, "type": { "kind": "SCALAR", "name": "DateTime", @@ -230389,8 +79746,8 @@ "defaultValue": null }, { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", + "name": "endedAt", + "description": null, "type": { "kind": "SCALAR", "name": "DateTime", @@ -230399,38 +79756,74 @@ "defaultValue": null }, { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", + "name": "Called", + "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "code", + "name": "Caller", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "UserCreateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "code_not", - "description": "All values that are not equal to given value.", + "name": "Room", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "ChatRoomCreateOneWithoutCallRequestsInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatRoomCreateOneWithoutCallRequestsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "code_in", - "description": "All values that are contained in given list.", + "name": "connect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomWhereUniqueInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CallRequestCreateManyWithoutRoomInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", + "description": null, "type": { "kind": "LIST", "name": null, @@ -230438,155 +79831,264 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "CallRequestWhereUniqueInput", "ofType": null } } }, "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CallRequestWhereUniqueInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CallRequestCreateWithoutRoomInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "called_descriptions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Json", + "ofType": null + } + }, + "defaultValue": null }, { - "name": "code_not_in", - "description": "All values that are not contained in given list.", + "name": "caller_descriptions", + "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "Json", + "ofType": null } }, "defaultValue": null }, { - "name": "code_lt", - "description": "All values less than the given value.", + "name": "status", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "ENUM", + "name": "CallRequestStatus", "ofType": null }, "defaultValue": null }, { - "name": "code_lte", - "description": "All values less than or equal the given value.", + "name": "startedAt", + "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "code_gt", - "description": "All values greater than the given value.", + "name": "endedAt", + "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "code_gte", - "description": "All values greater than or equal the given value.", + "name": "Called", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "Caller", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CallRequestUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "called_descriptions", + "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "code_contains", - "description": "All values containing the given string.", + "name": "caller_descriptions", + "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "code_not_contains", - "description": "All values not containing the given string.", + "name": "status", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "ENUM", + "name": "CallRequestStatus", "ofType": null }, "defaultValue": null }, { - "name": "code_starts_with", - "description": "All values starting with the given string.", + "name": "startedAt", + "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "code_not_starts_with", - "description": "All values not starting with the given string.", + "name": "endedAt", + "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "code_ends_with", - "description": "All values ending with the given string.", + "name": "Called", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "code_not_ends_with", - "description": "All values not ending with the given string.", + "name": "Caller", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "Room", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ChatRoomUpdateOneWithoutCallRequestsInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatRoomUpdateOneWithoutCallRequestsInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomWhereUniqueInput", "ofType": null }, "defaultValue": null }, { - "name": "password_not", - "description": "All values that are not equal to given value.", + "name": "disconnect", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CallRequestUpdateManyWithoutRoomInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "password_in", - "description": "All values that are contained in given list.", + "name": "connect", + "description": null, "type": { "kind": "LIST", "name": null, @@ -230594,8 +80096,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CallRequestWhereUniqueInput", "ofType": null } } @@ -230603,8 +80105,8 @@ "defaultValue": null }, { - "name": "password_not_in", - "description": "All values that are not contained in given list.", + "name": "disconnect", + "description": null, "type": { "kind": "LIST", "name": null, @@ -230612,137 +80114,173 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CallRequestWhereUniqueInput", "ofType": null } } }, "defaultValue": null - }, - { - "name": "password_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CallRequestUpdateWithoutRoomDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "password_gt", - "description": "All values greater than the given value.", + "name": "called_descriptions", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "password_gte", - "description": "All values greater than or equal the given value.", + "name": "caller_descriptions", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "password_contains", - "description": "All values containing the given string.", + "name": "status", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "CallRequestStatus", "ofType": null }, "defaultValue": null }, { - "name": "password_not_contains", - "description": "All values not containing the given string.", + "name": "startedAt", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "password_starts_with", - "description": "All values starting with the given string.", + "name": "endedAt", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "password_not_starts_with", - "description": "All values not starting with the given string.", + "name": "Called", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "password_ends_with", - "description": "All values ending with the given string.", + "name": "Caller", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CallRequestUpdateWithWhereUniqueWithoutRoomInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "password_not_ends_with", - "description": "All values not ending with the given string.", + "name": "where", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CallRequestWhereUniqueInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "validTill", + "name": "data", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CallRequestUpdateWithoutRoomDataInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CallRequestUpsertWithWhereUniqueWithoutRoomInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "validTill_not", - "description": "All values that are not equal to given value.", + "name": "where", + "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CallRequestWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatMessageCreateManyWithoutCreatedByInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "validTill_in", - "description": "All values that are contained in given list.", + "name": "connect", + "description": null, "type": { "kind": "LIST", "name": null, @@ -230750,17 +80288,28 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "ChatMessageWhereUniqueInput", "ofType": null } } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatMessageCreateManyWithoutRoomInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "validTill_not_in", - "description": "All values that are not contained in given list.", + "name": "connect", + "description": null, "type": { "kind": "LIST", "name": null, @@ -230768,61 +80317,143 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "ChatMessageWhereUniqueInput", "ofType": null } } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatMessageCreateOneInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "validTill_lt", - "description": "All values less than the given value.", + "name": "connect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageWhereUniqueInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatMessageCreateWithoutCreatedByInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "content", + "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "validTill_lte", - "description": "All values less than or equal the given value.", + "name": "contentText", + "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Room", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomCreateOneWithoutMessagesInput", "ofType": null }, "defaultValue": null }, { - "name": "validTill_gt", - "description": "All values greater than the given value.", + "name": "ReadedBy", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedCreateManyWithoutMessageInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatRoomCreateOneWithoutMessagesInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "to", + "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "validTill_gte", - "description": "All values greater than or equal the given value.", + "name": "connect", + "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "ChatRoomWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedCreateManyWithoutMessageInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "User", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null } @@ -230833,22 +80464,22 @@ }, { "kind": "INPUT_OBJECT", - "name": "ResetPasswordUpdateInput", + "name": "ChatMessageCreateWithoutReadedByInput", "description": null, "fields": null, "inputFields": [ { - "name": "code", + "name": "content", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "contentText", "description": null, "type": { "kind": "SCALAR", @@ -230858,21 +80489,21 @@ "defaultValue": null }, { - "name": "validTill", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutMessagesInput", "ofType": null }, "defaultValue": null }, { - "name": "User", + "name": "Room", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "name": "ChatRoomCreateOneWithoutMessagesInput", "ofType": null }, "defaultValue": null @@ -230884,67 +80515,67 @@ }, { "kind": "INPUT_OBJECT", - "name": "ResetPasswordUpdateManyMutationInput", + "name": "UserCreateOneWithoutMessagesInput", "description": null, "fields": null, "inputFields": [ { - "name": "code", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatMessageCreateWithoutRoomInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "password", + "name": "content", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "validTill", + "name": "contentText", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResetPasswordWhereUniqueInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutMessagesInput", "ofType": null }, "defaultValue": null }, { - "name": "code", + "name": "ReadedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedCreateManyWithoutMessageInput", "ofType": null }, "defaultValue": null @@ -230956,7 +80587,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutCreatedByInput", + "name": "ChatMessageReadedCreateManyWithoutUserInput", "description": null, "fields": null, "inputFields": [ @@ -230971,7 +80602,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", + "name": "ChatMessageReadedWhereUniqueInput", "ofType": null } } @@ -230985,17 +80616,21 @@ }, { "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutTagsInput", + "name": "ChatMessageReadedCreateWithoutMessageInput", "description": null, "fields": null, "inputFields": [ { - "name": "connect", + "name": "User", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutReadedMessagesInput", + "ofType": null + } }, "defaultValue": null } @@ -231006,7 +80641,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutVotesInput", + "name": "UserCreateOneWithoutReadedMessagesInput", "description": null, "fields": null, "inputFields": [ @@ -231015,7 +80650,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", + "name": "UserWhereUniqueInput", "ofType": null }, "defaultValue": null @@ -231027,202 +80662,395 @@ }, { "kind": "INPUT_OBJECT", - "name": "ResourceCreateWithoutChildsInput", + "name": "ChatMessageReadedCreateWithoutUserInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", + "name": "Message", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageCreateOneWithoutReadedByInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatMessageCreateOneWithoutReadedByInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "type", + "name": "connect", "description": null, "type": { - "kind": "ENUM", - "name": "ResourceType", + "kind": "INPUT_OBJECT", + "name": "ChatMessageWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedUpdateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "name", + "name": "Message", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ChatMessageUpdateOneWithoutReadedByInput", "ofType": null }, "defaultValue": null }, { - "name": "longtitle", + "name": "User", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutReadedMessagesInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatMessageUpdateOneWithoutReadedByInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "content", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", + "kind": "INPUT_OBJECT", + "name": "ChatMessageWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutReadedMessagesInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "contentText", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedUpdateManyWithoutMessageInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "published", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "deleted", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedUpdateManyWithoutUserInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "hidemenu", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "searchable", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedUpdateWithoutMessageDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "uri", + "name": "User", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutReadedMessagesInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedUpdateWithoutUserDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "isfolder", + "name": "Message", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "ChatMessageUpdateOneWithoutReadedByInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedUpdateWithWhereUniqueWithoutMessageInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "rating", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedWhereUniqueInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "positiveVotesCount", + "name": "data", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedUpdateWithoutMessageDataInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedUpdateWithWhereUniqueWithoutUserInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "negativeVotesCount", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedWhereUniqueInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "neutralVotesCount", + "name": "data", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedUpdateWithoutUserDataInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedUpsertWithWhereUniqueWithoutMessageInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "oldID", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedUpsertWithWhereUniqueWithoutUserInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "mockUpdate", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatMessageUpdateDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "components", + "name": "content", "description": null, "type": { "kind": "SCALAR", @@ -231232,181 +81060,279 @@ "defaultValue": null }, { - "name": "commentOldID", + "name": "contentText", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "class_key", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutMessagesInput", "ofType": null }, "defaultValue": null }, { - "name": "template", + "name": "Room", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "ChatRoomUpdateOneWithoutMessagesInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "ReadedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutResourcesInput", + "name": "ChatMessageReadedUpdateManyWithoutMessageInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutMessagesInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Parent", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutChildsInput", + "name": "UserWhereUniqueInput", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProject", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutPrismaResourcesInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatRoomUpdateOneWithoutMessagesInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Topic", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutCommentsInput", + "name": "ChatRoomWhereUniqueInput", "ofType": null }, "defaultValue": null }, { - "name": "Comments", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutTopicInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatMessageUpdateManyWithoutCreatedByInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Votes", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutResourceInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Tags", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutResourceInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatMessageUpdateManyWithoutRoomInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Blog", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "CodeChallenge", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCreateOneWithoutTopicInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatMessageUpdateOneInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Galleries", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "GalleryCreateManyWithoutResourceInput", + "name": "ChatMessageWhereUniqueInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccount", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutResourcesInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatMessageUpdateWithoutCreatedByDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Image", + "name": "content", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateOneWithoutImageResourceInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "Service", + "name": "contentText", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCreateOneWithoutResourceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Team", + "name": "Room", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutResourceInput", + "name": "ChatRoomUpdateOneWithoutMessagesInput", "ofType": null }, "defaultValue": null }, { - "name": "Project", + "name": "ReadedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutResourceInput", + "name": "ChatMessageReadedUpdateManyWithoutMessageInput", "ofType": null }, "defaultValue": null @@ -231418,236 +81344,379 @@ }, { "kind": "INPUT_OBJECT", - "name": "ResourceCreateWithoutCodeChallengeInput", + "name": "ChatMessageUpdateWithoutReadedByDataInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "content", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "code", + "name": "contentText", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "type", + "name": "CreatedBy", "description": null, "type": { - "kind": "ENUM", - "name": "ResourceType", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutMessagesInput", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "Room", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ChatRoomUpdateOneWithoutMessagesInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatMessageUpdateWithoutRoomDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "longtitle", + "name": "content", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "content", + "name": "contentText", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "contentText", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutMessagesInput", "ofType": null }, "defaultValue": null }, { - "name": "published", + "name": "ReadedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedUpdateManyWithoutMessageInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatMessageUpdateWithWhereUniqueWithoutCreatedByInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "deleted", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageWhereUniqueInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "hidemenu", + "name": "data", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageUpdateWithoutCreatedByDataInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatMessageUpdateWithWhereUniqueWithoutRoomInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "searchable", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageWhereUniqueInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "uri", + "name": "data", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageUpdateWithoutRoomDataInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatMessageUpsertWithWhereUniqueWithoutCreatedByInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "isfolder", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatMessageUpsertWithWhereUniqueWithoutRoomInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "rating", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatRoomCreateManyWithoutCreatedByInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "positiveVotesCount", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatRoomCreateManyWithoutMembersInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "negativeVotesCount", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatRoomCreateOneWithoutInvitationsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "neutralVotesCount", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "ChatRoomWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatRoomCreateWithoutCallRequestsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "oldID", + "name": "name", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "mockUpdate", + "name": "description", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "components", + "name": "image", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "commentOldID", + "name": "code", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "class_key", + "name": "isPublic", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "template", + "name": "Members", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "UserCreateManyWithoutRoomsInput", "ofType": null }, "defaultValue": null @@ -231655,149 +81724,238 @@ { "name": "CreatedBy", "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutCreatedRoomsInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "Messages", + "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutResourcesInput", + "name": "ChatMessageCreateManyWithoutRoomInput", "ofType": null }, "defaultValue": null }, { - "name": "Parent", + "name": "Invitations", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutChildsInput", + "name": "ChatRoomInvitationCreateManyWithoutChatRoomInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserCreateManyWithoutRoomsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Childs", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutParentInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutCreatedRoomsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "PrismaProject", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutPrismaResourcesInput", + "name": "UserWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatRoomInvitationCreateManyWithoutChatRoomInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Topic", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutCommentsInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomInvitationWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatRoomInvitationWhereUniqueInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Comments", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutTopicInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatRoomCreateWithoutCreatedByInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Votes", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutResourceInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "Tags", + "name": "description", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Blog", + "name": "image", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Galleries", + "name": "code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "GalleryCreateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "EthAccount", + "name": "isPublic", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutResourcesInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Image", + "name": "Members", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FileCreateOneWithoutImageResourceInput", + "name": "UserCreateManyWithoutRoomsInput", "ofType": null }, "defaultValue": null }, { - "name": "Service", + "name": "Messages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ServiceCreateOneWithoutResourceInput", + "name": "ChatMessageCreateManyWithoutRoomInput", "ofType": null }, "defaultValue": null }, { - "name": "Team", + "name": "Invitations", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutResourceInput", + "name": "ChatRoomInvitationCreateManyWithoutChatRoomInput", "ofType": null }, "defaultValue": null }, { - "name": "Project", + "name": "CallRequests", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutResourceInput", + "name": "CallRequestCreateManyWithoutRoomInput", "ofType": null }, "defaultValue": null @@ -231809,122 +81967,145 @@ }, { "kind": "INPUT_OBJECT", - "name": "ResourceCreateWithoutCommentsInput", + "name": "ChatRoomCreateWithoutInvitationsInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "name", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "code", + "name": "description", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "type", + "name": "image", "description": null, "type": { - "kind": "ENUM", - "name": "ResourceType", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "code", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "longtitle", + "name": "isPublic", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "content", + "name": "Members", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", + "kind": "INPUT_OBJECT", + "name": "UserCreateManyWithoutRoomsInput", "ofType": null }, "defaultValue": null }, { - "name": "contentText", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutCreatedRoomsInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "published", + "name": "Messages", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "ChatMessageCreateManyWithoutRoomInput", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "CallRequests", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "CallRequestCreateManyWithoutRoomInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatRoomCreateWithoutMembersInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "hidemenu", + "name": "name", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "searchable", + "name": "description", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "uri", + "name": "image", "description": null, "type": { "kind": "SCALAR", @@ -231934,261 +82115,385 @@ "defaultValue": null }, { - "name": "isfolder", + "name": "code", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "rating", + "name": "isPublic", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "positiveVotesCount", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutCreatedRoomsInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "negativeVotesCount", + "name": "Messages", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "ChatMessageCreateManyWithoutRoomInput", "ofType": null }, "defaultValue": null }, { - "name": "neutralVotesCount", + "name": "Invitations", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "ChatRoomInvitationCreateManyWithoutChatRoomInput", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "CallRequests", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "CallRequestCreateManyWithoutRoomInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatRoomCreateWithoutMessagesInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "mockUpdate", + "name": "name", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "components", + "name": "description", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "commentOldID", + "name": "image", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "class_key", + "name": "code", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "template", + "name": "isPublic", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "Members", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutResourcesInput", + "name": "UserCreateManyWithoutRoomsInput", "ofType": null }, "defaultValue": null }, { - "name": "Parent", + "name": "CreatedBy", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutChildsInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutCreatedRoomsInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "Childs", + "name": "Invitations", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutParentInput", + "name": "ChatRoomInvitationCreateManyWithoutChatRoomInput", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProject", + "name": "CallRequests", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutPrismaResourcesInput", + "name": "CallRequestCreateManyWithoutRoomInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ChatRoomInvitationConnection", + "description": "A connection to a list of items.", + "fields": [ { - "name": "Topic", - "description": null, + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutCommentsInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Votes", - "description": null, + "name": "edges", + "description": "A list of edges.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutResourceInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChatRoomInvitationEdge", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Tags", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutResourceInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AggregateChatRoomInvitation", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ChatRoomInvitationEdge", + "description": "An edge in a connection.", + "fields": [ { - "name": "Blog", - "description": null, + "name": "node", + "description": "The item at the end of the edge.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChatRoomInvitation", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CodeChallenge", - "description": null, + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCreateOneWithoutTopicInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatRoomInvitationCreateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Galleries", + "name": "CreatedBy", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "GalleryCreateManyWithoutResourceInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "EthAccount", + "name": "User", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutResourcesInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "Image", + "name": "ChatRoom", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateOneWithoutImageResourceInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomCreateOneWithoutInvitationsInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "Service", + "name": "Notice", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ServiceCreateOneWithoutResourceInput", + "name": "NoticeCreateOneWithoutChatRoomInvitationInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NoticeCreateOneWithoutChatRoomInvitationInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Team", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutResourceInput", + "name": "NoticeWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatRoomInvitationCreateOneWithoutNoticeInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Project", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutResourceInput", + "name": "ChatRoomInvitationWhereUniqueInput", "ofType": null }, "defaultValue": null @@ -232200,386 +82505,629 @@ }, { "kind": "INPUT_OBJECT", - "name": "ResourceCreateWithoutCreatedByInput", + "name": "ChatRoomInvitationCreateWithoutChatRoomInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "code", + "name": "User", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "type", + "name": "Notice", "description": null, "type": { - "kind": "ENUM", - "name": "ResourceType", + "kind": "INPUT_OBJECT", + "name": "NoticeCreateOneWithoutChatRoomInvitationInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatRoomInvitationCreateWithoutNoticeInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "name", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "longtitle", + "name": "User", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "content", + "name": "ChatRoom", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomCreateOneWithoutInvitationsInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ChatRoomInvitationPreviousValues", + "description": null, + "fields": [ { - "name": "contentText", + "name": "id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "published", + "name": "createdAt", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "deleted", + "name": "updatedAt", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ChatRoomInvitationSubscriptionPayload", + "description": null, + "fields": [ { - "name": "hidemenu", + "name": "mutation", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "searchable", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "ChatRoomInvitation", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "uri", + "name": "updatedFields", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "isfolder", + "name": "previousValues", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "ChatRoomInvitationPreviousValues", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatRoomInvitationSubscriptionWhereInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "rating", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomInvitationSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "positiveVotesCount", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomInvitationSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "negativeVotesCount", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomInvitationSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "neutralVotesCount", - "description": null, + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "oldID", - "description": null, + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "mockUpdate", - "description": null, + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "components", - "description": null, + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "commentOldID", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "ChatRoomInvitationWhereInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatRoomInvitationUpdateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "class_key", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "template", + "name": "User", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "Parent", + "name": "ChatRoom", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutChildsInput", + "name": "ChatRoomUpdateOneWithoutInvitationsInput", "ofType": null }, "defaultValue": null }, { - "name": "Childs", + "name": "Notice", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutParentInput", + "name": "NoticeUpdateOneWithoutChatRoomInvitationInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatRoomUpdateOneWithoutInvitationsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "PrismaProject", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutPrismaResourcesInput", + "name": "ChatRoomWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NoticeUpdateOneWithoutChatRoomInvitationInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Topic", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutCommentsInput", + "name": "NoticeWhereUniqueInput", "ofType": null }, "defaultValue": null }, { - "name": "Comments", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutTopicInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatRoomInvitationUpdateManyWithoutChatRoomInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Votes", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutResourceInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomInvitationWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Tags", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutResourceInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomInvitationWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatRoomInvitationUpdateOneWithoutNoticeInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Blog", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneInput", + "name": "ChatRoomInvitationWhereUniqueInput", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallenge", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCreateOneWithoutTopicInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatRoomInvitationUpdateWithoutChatRoomDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Galleries", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "GalleryCreateManyWithoutResourceInput", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccount", + "name": "User", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutResourcesInput", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "Image", + "name": "Notice", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FileCreateOneWithoutImageResourceInput", + "name": "NoticeUpdateOneWithoutChatRoomInvitationInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatRoomInvitationUpdateWithoutNoticeDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Service", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ServiceCreateOneWithoutResourceInput", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "Team", + "name": "User", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutResourceInput", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "Project", + "name": "ChatRoom", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutResourceInput", + "name": "ChatRoomUpdateOneWithoutInvitationsInput", "ofType": null }, "defaultValue": null @@ -232591,132 +83139,210 @@ }, { "kind": "INPUT_OBJECT", - "name": "ResourceCreateWithoutEthAccountInput", + "name": "ChatRoomInvitationUpdateWithWhereUniqueWithoutChatRoomInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomInvitationWhereUniqueInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "type", + "name": "data", "description": null, "type": { - "kind": "ENUM", - "name": "ResourceType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomInvitationUpdateWithoutChatRoomDataInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatRoomInvitationUpsertWithWhereUniqueWithoutChatRoomInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "name", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomInvitationWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatRoomUpdateManyWithoutCreatedByInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "longtitle", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "content", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatRoomUpdateManyWithoutMembersInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "contentText", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "published", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatRoomUpdateWithoutCallRequestsDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "deleted", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "hidemenu", + "name": "description", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "searchable", + "name": "image", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "uri", + "name": "code", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "isfolder", + "name": "isPublic", "description": null, "type": { "kind": "SCALAR", @@ -232726,87 +83352,136 @@ "defaultValue": null }, { - "name": "rating", + "name": "Members", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "UserUpdateManyWithoutRoomsInput", "ofType": null }, "defaultValue": null }, { - "name": "positiveVotesCount", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutCreatedRoomsInput", "ofType": null }, "defaultValue": null }, { - "name": "negativeVotesCount", + "name": "Messages", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "ChatMessageUpdateManyWithoutRoomInput", "ofType": null }, "defaultValue": null }, { - "name": "neutralVotesCount", + "name": "Invitations", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "ChatRoomInvitationUpdateManyWithoutChatRoomInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserUpdateManyWithoutRoomsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "oldID", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "mockUpdate", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutCreatedRoomsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "components", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatRoomUpdateWithoutCreatedByDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "commentOldID", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "class_key", + "name": "description", "description": null, "type": { "kind": "SCALAR", @@ -232816,161 +83491,172 @@ "defaultValue": null }, { - "name": "template", + "name": "image", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutResourcesInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Parent", + "name": "isPublic", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutChildsInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Childs", + "name": "Members", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutParentInput", + "name": "UserUpdateManyWithoutRoomsInput", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProject", + "name": "Messages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutPrismaResourcesInput", + "name": "ChatMessageUpdateManyWithoutRoomInput", "ofType": null }, "defaultValue": null }, { - "name": "Topic", + "name": "Invitations", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutCommentsInput", + "name": "ChatRoomInvitationUpdateManyWithoutChatRoomInput", "ofType": null }, "defaultValue": null }, { - "name": "Comments", + "name": "CallRequests", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutTopicInput", + "name": "CallRequestUpdateManyWithoutRoomInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatRoomUpdateWithoutInvitationsDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Votes", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "description", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Blog", + "name": "image", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallenge", + "name": "code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCreateOneWithoutTopicInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Galleries", + "name": "isPublic", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "GalleryCreateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Image", + "name": "Members", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FileCreateOneWithoutImageResourceInput", + "name": "UserUpdateManyWithoutRoomsInput", "ofType": null }, "defaultValue": null }, { - "name": "Service", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ServiceCreateOneWithoutResourceInput", + "name": "UserUpdateOneWithoutCreatedRoomsInput", "ofType": null }, "defaultValue": null }, { - "name": "Team", + "name": "Messages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutResourceInput", + "name": "ChatMessageUpdateManyWithoutRoomInput", "ofType": null }, "defaultValue": null }, { - "name": "Project", + "name": "CallRequests", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutResourceInput", + "name": "CallRequestUpdateManyWithoutRoomInput", "ofType": null }, "defaultValue": null @@ -232982,122 +83668,133 @@ }, { "kind": "INPUT_OBJECT", - "name": "ResourceCreateWithoutGalleriesInput", + "name": "ChatRoomUpdateWithoutMembersDataInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "code", + "name": "description", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "type", + "name": "image", "description": null, "type": { - "kind": "ENUM", - "name": "ResourceType", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "code", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "longtitle", + "name": "isPublic", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "content", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutCreatedRoomsInput", "ofType": null }, "defaultValue": null }, { - "name": "contentText", + "name": "Messages", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ChatMessageUpdateManyWithoutRoomInput", "ofType": null }, "defaultValue": null }, { - "name": "published", + "name": "Invitations", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "ChatRoomInvitationUpdateManyWithoutChatRoomInput", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "CallRequests", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "CallRequestUpdateManyWithoutRoomInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatRoomUpdateWithoutMessagesDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "hidemenu", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "searchable", + "name": "description", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "uri", + "name": "image", "description": null, "type": { "kind": "SCALAR", @@ -233107,319 +83804,559 @@ "defaultValue": null }, { - "name": "isfolder", + "name": "code", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "rating", + "name": "isPublic", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "positiveVotesCount", + "name": "Members", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "UserUpdateManyWithoutRoomsInput", "ofType": null }, "defaultValue": null }, { - "name": "negativeVotesCount", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutCreatedRoomsInput", "ofType": null }, "defaultValue": null }, { - "name": "neutralVotesCount", + "name": "Invitations", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "ChatRoomInvitationUpdateManyWithoutChatRoomInput", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "CallRequests", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "CallRequestUpdateManyWithoutRoomInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatRoomUpdateWithWhereUniqueWithoutCreatedByInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "mockUpdate", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomWhereUniqueInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "components", + "name": "data", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomUpdateWithoutCreatedByDataInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatRoomUpdateWithWhereUniqueWithoutMembersInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "commentOldID", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomWhereUniqueInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "class_key", + "name": "data", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomUpdateWithoutMembersDataInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatRoomUpsertWithWhereUniqueWithoutCreatedByInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "template", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatRoomUpsertWithWhereUniqueWithoutMembersInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "CreatedBy", + "name": "where", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutResourcesInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CityConnection", + "description": "A connection to a list of items.", + "fields": [ { - "name": "Parent", - "description": null, + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutChildsInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Childs", - "description": null, + "name": "edges", + "description": "A list of edges.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutParentInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CityEdge", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "PrismaProject", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutPrismaResourcesInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AggregateCity", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CityEdge", + "description": "An edge in a connection.", + "fields": [ { - "name": "Topic", - "description": null, + "name": "node", + "description": "The item at the end of the edge.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutCommentsInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "City", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Comments", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CityPreviousValues", + "description": null, + "fields": [ + { + "name": "id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutTopicInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Votes", + "name": "city_id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Tags", + "name": "name", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutResourceInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Blog", + "name": "alias", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CodeChallenge", + "name": "lat", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCreateOneWithoutTopicInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "EthAccount", + "name": "lng", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutResourcesInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CitySubscriptionPayload", + "description": null, + "fields": [ { - "name": "Image", + "name": "mutation", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateOneWithoutImageResourceInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Service", + "name": "node", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCreateOneWithoutResourceInput", + "kind": "OBJECT", + "name": "City", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Team", + "name": "updatedFields", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutResourceInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Project", + "name": "previousValues", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutResourceInput", + "kind": "OBJECT", + "name": "CityPreviousValues", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "ResourceCreateWithoutImageInput", + "name": "CitySubscriptionWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CitySubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "code", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CitySubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "type", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "ENUM", - "name": "ResourceType", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CitySubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "name", - "description": null, + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "longtitle", - "description": null, + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", "type": { "kind": "SCALAR", "name": "String", @@ -233428,67 +84365,147 @@ "defaultValue": null }, { - "name": "content", + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", + "kind": "INPUT_OBJECT", + "name": "CityWhereInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CommentCreateManyWithoutCreated_byInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "contentText", + "name": "connect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CommentWhereUniqueInput", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CommentCreateWithoutCreated_byInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "comment_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "published", + "name": "object_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "type_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "hidemenu", + "name": "editor_content", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Json", + "ofType": null + } }, "defaultValue": null }, { - "name": "searchable", + "name": "is_checked", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "uri", + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -233498,670 +84515,1054 @@ "defaultValue": null }, { - "name": "isfolder", + "name": "parent", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CommentPreviousValues", + "description": null, + "fields": [ { - "name": "rating", + "name": "id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "positiveVotesCount", + "name": "createdAt", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "negativeVotesCount", + "name": "updatedAt", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "neutralVotesCount", + "name": "comment_id", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "oldID", + "name": "object_id", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "mockUpdate", + "name": "type_id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "components", + "name": "editor_content", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Json", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "commentOldID", + "name": "is_checked", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "class_key", + "name": "name", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "template", + "name": "parent", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CommentSubscriptionPayload", + "description": null, + "fields": [ { - "name": "CreatedBy", + "name": "mutation", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutResourcesInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Parent", + "name": "node", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutChildsInput", + "kind": "OBJECT", + "name": "Comment", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Childs", + "name": "updatedFields", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutParentInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "PrismaProject", + "name": "previousValues", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutPrismaResourcesInput", + "kind": "OBJECT", + "name": "CommentPreviousValues", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CommentSubscriptionWhereInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Topic", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutCommentsInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CommentSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Comments", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutTopicInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CommentSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Votes", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutResourceInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CommentSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Tags", - "description": null, + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutResourceInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Blog", - "description": null, + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallenge", - "description": null, + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCreateOneWithoutTopicInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Galleries", - "description": null, + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", "type": { - "kind": "INPUT_OBJECT", - "name": "GalleryCreateManyWithoutResourceInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "EthAccount", + "name": "node", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutResourcesInput", + "name": "CommentWhereInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CommentType", + "description": null, + "fields": [ { - "name": "Service", + "name": "id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCreateOneWithoutResourceInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Team", + "name": "name", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutResourceInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Project", + "name": "code", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutResourceInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null } ], - "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateWithoutParentInput", - "description": null, - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "CommentTypeConnection", + "description": "A connection to a list of items.", + "fields": [ { - "name": "id", - "description": null, + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "code", - "description": null, + "name": "edges", + "description": "A list of edges.", + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CommentTypeEdge", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "type", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "ResourceType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AggregateCommentType", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CommentTypeEdge", + "description": "An edge in a connection.", + "fields": [ { - "name": "name", - "description": null, + "name": "node", + "description": "The item at the end of the edge.", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CommentType", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "longtitle", - "description": null, + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CommentTypeCreateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "content", + "name": "name", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "contentText", + "name": "code", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "CommentTypeOrderByInput", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "published", + "name": "id_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "deleted", + "name": "id_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "hidemenu", + "name": "name_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "searchable", + "name": "name_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "uri", + "name": "code_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "isfolder", + "name": "code_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "rating", + "name": "updatedAt_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "positiveVotesCount", + "name": "updatedAt_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "negativeVotesCount", + "name": "createdAt_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "neutralVotesCount", + "name": "createdAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CommentTypePreviousValues", + "description": null, + "fields": [ + { + "name": "id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "oldID", + "name": "name", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "mockUpdate", + "name": "code", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CommentTypeSubscriptionPayload", + "description": null, + "fields": [ { - "name": "components", + "name": "mutation", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "commentOldID", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "CommentType", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "class_key", + "name": "updatedFields", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "template", + "name": "previousValues", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "CommentTypePreviousValues", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CommentTypeSubscriptionWhereInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "CreatedBy", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutResourcesInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CommentTypeSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Childs", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutParentInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CommentTypeSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "PrismaProject", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutPrismaResourcesInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CommentTypeSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Topic", - "description": null, + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutCommentsInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Comments", - "description": null, + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutTopicInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Votes", - "description": null, + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutResourceInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Tags", - "description": null, + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutResourceInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Blog", + "name": "node", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneInput", + "name": "CommentTypeWhereInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CommentTypeWhereInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "CodeChallenge", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCreateOneWithoutTopicInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CommentTypeWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Galleries", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "INPUT_OBJECT", - "name": "GalleryCreateManyWithoutResourceInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CommentTypeWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "EthAccount", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutResourcesInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CommentTypeWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Image", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateOneWithoutImageResourceInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Service", - "description": null, + "name": "id_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCreateOneWithoutResourceInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Team", - "description": null, + "name": "id_in", + "description": "All values that are contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutResourceInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Project", - "description": null, + "name": "id_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutResourceInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateWithoutPrismaProjectInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "id_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", "name": "ID", @@ -234170,8 +85571,8 @@ "defaultValue": null }, { - "name": "code", - "description": null, + "name": "id_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", "name": "ID", @@ -234180,98 +85581,98 @@ "defaultValue": null }, { - "name": "type", - "description": null, + "name": "id_gt", + "description": "All values greater than the given value.", "type": { - "kind": "ENUM", - "name": "ResourceType", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "name", - "description": null, + "name": "id_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "longtitle", - "description": null, + "name": "id_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "content", - "description": null, + "name": "id_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "contentText", - "description": null, + "name": "id_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "published", - "description": null, + "name": "id_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "deleted", - "description": null, + "name": "id_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "hidemenu", - "description": null, + "name": "id_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "searchable", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "uri", - "description": null, + "name": "name_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", "name": "String", @@ -234280,98 +85681,124 @@ "defaultValue": null }, { - "name": "isfolder", - "description": null, + "name": "name_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "rating", - "description": null, + "name": "name_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "name_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "positiveVotesCount", - "description": null, + "name": "name_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "negativeVotesCount", - "description": null, + "name": "name_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "neutralVotesCount", - "description": null, + "name": "name_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", - "description": null, + "name": "name_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "mockUpdate", - "description": null, + "name": "name_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "components", - "description": null, + "name": "name_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "commentOldID", - "description": null, + "name": "name_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "class_key", - "description": null, + "name": "name_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -234380,162 +85807,227 @@ "defaultValue": null }, { - "name": "template", - "description": null, + "name": "name_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutResourcesInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Parent", - "description": null, + "name": "code_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutChildsInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Childs", - "description": null, + "name": "code_in", + "description": "All values that are contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutParentInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Topic", - "description": null, + "name": "code_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutCommentsInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Comments", - "description": null, + "name": "code_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutTopicInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Votes", - "description": null, + "name": "code_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Tags", - "description": null, + "name": "code_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Blog", - "description": null, + "name": "code_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CommentTypeUpdateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "CodeChallenge", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCreateOneWithoutTopicInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Galleries", + "name": "code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "GalleryCreateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CommentTypeWhereUniqueInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "EthAccount", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutResourcesInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Image", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateOneWithoutImageResourceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Service", + "name": "code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCreateOneWithoutResourceInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CommentUpdateManyWithoutCreated_byInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Team", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutResourceInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CommentWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Project", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutResourceInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CommentWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null } @@ -234546,202 +86038,363 @@ }, { "kind": "INPUT_OBJECT", - "name": "ResourceCreateWithoutProjectInput", + "name": "CommentUpdateWithoutCreated_byDataInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "comment_id", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "code", + "name": "object_id", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "type", + "name": "type_id", "description": null, "type": { - "kind": "ENUM", - "name": "ResourceType", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "editor_content", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "longtitle", + "name": "is_checked", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "content", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "contentText", + "name": "parent", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CommentUpdateWithWhereUniqueWithoutCreated_byInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "published", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CommentWhereUniqueInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "deleted", + "name": "data", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CommentUpdateWithoutCreated_byDataInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CommentUpsertWithWhereUniqueWithoutCreated_byInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "hidemenu", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CommentWhereUniqueInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthAccountCreateManyWithoutContractSourceInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthAccountWhereUniqueInput", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthAccountCreateManyWithoutCreatedByInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthAccountWhereUniqueInput", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthAccountCreateOneWithoutBlocksMinedInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "EthAccountWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthAccountCreateOneWithoutIncomeTransactionsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "searchable", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "EthAccountWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthAccountCreateOneWithoutOutcomeTransactionsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "uri", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "EthAccountWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthAccountCreateOneWithoutTransactionInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "isfolder", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "EthAccountWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthAccountCreateWithoutBlocksMinedInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "rating", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "positiveVotesCount", + "name": "description", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "negativeVotesCount", + "name": "address", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "neutralVotesCount", + "name": "type", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "EthAccountType", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "source", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "mockUpdate", + "name": "bytecode", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "components", + "name": "abi", "description": null, "type": { "kind": "SCALAR", @@ -234751,181 +86404,206 @@ "defaultValue": null }, { - "name": "commentOldID", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutEthAccountsInput", "ofType": null }, "defaultValue": null }, { - "name": "class_key", + "name": "Transaction", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "EthTransactionCreateOneWithoutAccountInput", "ofType": null }, "defaultValue": null }, { - "name": "template", + "name": "IncomeTransactions", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "EthTransactionCreateManyWithoutReceiverInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "OutcomeTransactions", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutResourcesInput", + "name": "EthTransactionCreateManyWithoutSenderInput", "ofType": null }, "defaultValue": null }, { - "name": "Parent", + "name": "ContractSource", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutChildsInput", + "name": "EthContractSourceCreateOneWithoutAccountsInput", "ofType": null }, "defaultValue": null }, { - "name": "Childs", + "name": "UserAuthed", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutParentInput", + "name": "UserCreateOneInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthAccountCreateWithoutContractSourceInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "PrismaProject", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutPrismaResourcesInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Topic", + "name": "description", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutCommentsInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "Comments", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutTopicInput", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "ENUM", + "name": "EthAccountType", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "source", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "bytecode", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Blog", + "name": "abi", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallenge", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCreateOneWithoutTopicInput", + "name": "UserCreateOneWithoutEthAccountsInput", "ofType": null }, "defaultValue": null }, { - "name": "Galleries", + "name": "Transaction", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "GalleryCreateManyWithoutResourceInput", + "name": "EthTransactionCreateOneWithoutAccountInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccount", + "name": "IncomeTransactions", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutResourcesInput", + "name": "EthTransactionCreateManyWithoutReceiverInput", "ofType": null }, "defaultValue": null }, { - "name": "Image", + "name": "OutcomeTransactions", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FileCreateOneWithoutImageResourceInput", + "name": "EthTransactionCreateManyWithoutSenderInput", "ofType": null }, "defaultValue": null }, { - "name": "Service", + "name": "BlocksMined", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ServiceCreateOneWithoutResourceInput", + "name": "EthBlockCreateManyWithoutMinerInput", "ofType": null }, "defaultValue": null }, { - "name": "Team", + "name": "UserAuthed", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutResourceInput", + "name": "UserCreateOneInput", "ofType": null }, "defaultValue": null @@ -234937,42 +86615,56 @@ }, { "kind": "INPUT_OBJECT", - "name": "ResourceCreateWithoutServiceInput", + "name": "EthAccountCreateWithoutCreatedByInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "code", + "name": "description", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Json", "ofType": null }, "defaultValue": null }, + { + "name": "address", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, { "name": "type", "description": null, "type": { "kind": "ENUM", - "name": "ResourceType", + "name": "EthAccountType", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "source", "description": null, "type": { "kind": "SCALAR", @@ -234982,7 +86674,7 @@ "defaultValue": null }, { - "name": "longtitle", + "name": "bytecode", "description": null, "type": { "kind": "SCALAR", @@ -234992,7 +86684,7 @@ "defaultValue": null }, { - "name": "content", + "name": "abi", "description": null, "type": { "kind": "SCALAR", @@ -235002,321 +86694,351 @@ "defaultValue": null }, { - "name": "contentText", + "name": "Transaction", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "EthTransactionCreateOneWithoutAccountInput", "ofType": null }, "defaultValue": null }, { - "name": "published", + "name": "IncomeTransactions", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "EthTransactionCreateManyWithoutReceiverInput", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "OutcomeTransactions", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "EthTransactionCreateManyWithoutSenderInput", "ofType": null }, "defaultValue": null }, { - "name": "hidemenu", + "name": "ContractSource", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "EthContractSourceCreateOneWithoutAccountsInput", "ofType": null }, "defaultValue": null }, { - "name": "searchable", + "name": "BlocksMined", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "EthBlockCreateManyWithoutMinerInput", "ofType": null }, "defaultValue": null }, { - "name": "uri", + "name": "UserAuthed", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserCreateOneInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthAccountCreateWithoutIncomeTransactionsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "isfolder", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "rating", + "name": "description", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "positiveVotesCount", + "name": "address", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "negativeVotesCount", + "name": "type", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "EthAccountType", "ofType": null }, "defaultValue": null }, { - "name": "neutralVotesCount", + "name": "source", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "bytecode", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "mockUpdate", + "name": "abi", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "components", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutEthAccountsInput", "ofType": null }, "defaultValue": null }, { - "name": "commentOldID", + "name": "Transaction", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "EthTransactionCreateOneWithoutAccountInput", "ofType": null }, "defaultValue": null }, { - "name": "class_key", + "name": "OutcomeTransactions", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "EthTransactionCreateManyWithoutSenderInput", "ofType": null }, "defaultValue": null }, { - "name": "template", + "name": "ContractSource", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "EthContractSourceCreateOneWithoutAccountsInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "BlocksMined", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutResourcesInput", + "name": "EthBlockCreateManyWithoutMinerInput", "ofType": null }, "defaultValue": null }, { - "name": "Parent", + "name": "UserAuthed", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutChildsInput", + "name": "UserCreateOneInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthAccountCreateWithoutOutcomeTransactionsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Childs", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutParentInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProject", + "name": "description", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutPrismaResourcesInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "Topic", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutCommentsInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "Comments", + "name": "type", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutTopicInput", + "kind": "ENUM", + "name": "EthAccountType", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "source", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "bytecode", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Blog", + "name": "abi", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallenge", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCreateOneWithoutTopicInput", + "name": "UserCreateOneWithoutEthAccountsInput", "ofType": null }, "defaultValue": null }, { - "name": "Galleries", + "name": "Transaction", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "GalleryCreateManyWithoutResourceInput", + "name": "EthTransactionCreateOneWithoutAccountInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccount", + "name": "IncomeTransactions", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutResourcesInput", + "name": "EthTransactionCreateManyWithoutReceiverInput", "ofType": null }, "defaultValue": null }, { - "name": "Image", + "name": "ContractSource", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FileCreateOneWithoutImageResourceInput", + "name": "EthContractSourceCreateOneWithoutAccountsInput", "ofType": null }, "defaultValue": null }, { - "name": "Team", + "name": "BlocksMined", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutResourceInput", + "name": "EthBlockCreateManyWithoutMinerInput", "ofType": null }, "defaultValue": null }, { - "name": "Project", + "name": "UserAuthed", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutResourceInput", + "name": "UserCreateOneInput", "ofType": null }, "defaultValue": null @@ -235328,52 +87050,56 @@ }, { "kind": "INPUT_OBJECT", - "name": "ResourceCreateWithoutTagsInput", + "name": "EthAccountCreateWithoutTransactionInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "code", + "name": "description", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "type", + "name": "address", "description": null, "type": { - "kind": "ENUM", - "name": "ResourceType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "name", + "name": "type", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "EthAccountType", "ofType": null }, "defaultValue": null }, { - "name": "longtitle", + "name": "source", "description": null, "type": { "kind": "SCALAR", @@ -235383,17 +87109,7 @@ "defaultValue": null }, { - "name": "content", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentText", + "name": "bytecode", "description": null, "type": { "kind": "SCALAR", @@ -235403,311 +87119,428 @@ "defaultValue": null }, { - "name": "published", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "deleted", + "name": "abi", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "hidemenu", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutEthAccountsInput", "ofType": null }, "defaultValue": null }, { - "name": "searchable", + "name": "IncomeTransactions", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "EthTransactionCreateManyWithoutReceiverInput", "ofType": null }, "defaultValue": null }, { - "name": "uri", + "name": "OutcomeTransactions", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "EthTransactionCreateManyWithoutSenderInput", "ofType": null }, "defaultValue": null }, { - "name": "isfolder", + "name": "ContractSource", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "EthContractSourceCreateOneWithoutAccountsInput", "ofType": null }, "defaultValue": null }, { - "name": "rating", + "name": "BlocksMined", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "EthBlockCreateManyWithoutMinerInput", "ofType": null }, "defaultValue": null }, { - "name": "positiveVotesCount", + "name": "UserAuthed", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "UserCreateOneInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EthAccountPreviousValues", + "description": null, + "fields": [ { - "name": "negativeVotesCount", + "name": "id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "neutralVotesCount", + "name": "createdAt", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "oldID", + "name": "updatedAt", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "mockUpdate", + "name": "name", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "components", + "name": "description", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "Json", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "commentOldID", + "name": "address", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "class_key", + "name": "type", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "EthAccountType", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "template", + "name": "source", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutResourcesInput", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Parent", + "name": "bytecode", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutChildsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Childs", + "name": "abi", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutParentInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EthAccountSubscriptionPayload", + "description": null, + "fields": [ { - "name": "PrismaProject", + "name": "mutation", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutPrismaResourcesInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Topic", + "name": "node", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutCommentsInput", + "kind": "OBJECT", + "name": "EthAccount", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Comments", + "name": "updatedFields", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutTopicInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Votes", + "name": "previousValues", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutResourceInput", + "kind": "OBJECT", + "name": "EthAccountPreviousValues", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthAccountSubscriptionWhereInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Blog", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthAccountSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "CodeChallenge", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCreateOneWithoutTopicInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthAccountSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Galleries", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "INPUT_OBJECT", - "name": "GalleryCreateManyWithoutResourceInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthAccountSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "EthAccount", - "description": null, + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutResourcesInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Image", - "description": null, + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateOneWithoutImageResourceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Service", - "description": null, + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCreateOneWithoutResourceInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Team", - "description": null, + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutResourceInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Project", + "name": "node", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutResourceInput", + "name": "EthAccountWhereInput", "ofType": null }, "defaultValue": null @@ -235719,82 +87552,147 @@ }, { "kind": "INPUT_OBJECT", - "name": "ResourceCreateWithoutTeamInput", + "name": "EthAccountUpdateManyWithoutContractSourceInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthAccountWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "code", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthAccountWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthAccountUpdateManyWithoutCreatedByInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "type", + "name": "connect", "description": null, "type": { - "kind": "ENUM", - "name": "ResourceType", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthAccountWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "name", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthAccountWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthAccountUpdateOneWithoutBlocksMinedInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "longtitle", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "EthAccountWhereUniqueInput", "ofType": null }, "defaultValue": null }, { - "name": "content", + "name": "disconnect", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "Boolean", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthAccountUpdateOneWithoutIncomeTransactionsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "contentText", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "EthAccountWhereUniqueInput", "ofType": null }, "defaultValue": null }, { - "name": "published", + "name": "disconnect", "description": null, "type": { "kind": "SCALAR", @@ -235802,19 +87700,30 @@ "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthAccountUpdateOneWithoutOutcomeTransactionsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "deleted", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "EthAccountWhereUniqueInput", "ofType": null }, "defaultValue": null }, { - "name": "hidemenu", + "name": "disconnect", "description": null, "type": { "kind": "SCALAR", @@ -235822,283 +87731,316 @@ "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthAccountUpdateOneWithoutTransactionInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "searchable", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "EthAccountWhereUniqueInput", "ofType": null }, "defaultValue": null }, { - "name": "uri", + "name": "disconnect", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthAccountUpdateWithoutBlocksMinedDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "isfolder", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "rating", + "name": "description", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "positiveVotesCount", + "name": "address", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "negativeVotesCount", + "name": "type", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "EthAccountType", "ofType": null }, "defaultValue": null }, { - "name": "neutralVotesCount", + "name": "source", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "bytecode", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "mockUpdate", + "name": "abi", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "components", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutEthAccountsInput", "ofType": null }, "defaultValue": null }, { - "name": "commentOldID", + "name": "Transaction", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "EthTransactionUpdateOneWithoutAccountInput", "ofType": null }, "defaultValue": null }, { - "name": "class_key", + "name": "IncomeTransactions", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "EthTransactionUpdateManyWithoutReceiverInput", "ofType": null }, "defaultValue": null }, { - "name": "template", + "name": "OutcomeTransactions", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "EthTransactionUpdateManyWithoutSenderInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "ContractSource", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutResourcesInput", + "name": "EthContractSourceUpdateOneWithoutAccountsInput", "ofType": null }, "defaultValue": null }, { - "name": "Parent", + "name": "UserAuthed", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutChildsInput", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthAccountUpdateWithoutContractSourceDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Childs", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutParentInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProject", + "name": "description", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutPrismaResourcesInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "Topic", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutCommentsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Comments", + "name": "type", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutTopicInput", + "kind": "ENUM", + "name": "EthAccountType", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "source", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "bytecode", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Blog", + "name": "abi", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallenge", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCreateOneWithoutTopicInput", + "name": "UserUpdateOneWithoutEthAccountsInput", "ofType": null }, "defaultValue": null }, { - "name": "Galleries", + "name": "Transaction", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "GalleryCreateManyWithoutResourceInput", + "name": "EthTransactionUpdateOneWithoutAccountInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccount", + "name": "IncomeTransactions", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutResourcesInput", + "name": "EthTransactionUpdateManyWithoutReceiverInput", "ofType": null }, "defaultValue": null }, { - "name": "Image", + "name": "OutcomeTransactions", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FileCreateOneWithoutImageResourceInput", + "name": "EthTransactionUpdateManyWithoutSenderInput", "ofType": null }, "defaultValue": null }, { - "name": "Service", + "name": "BlocksMined", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ServiceCreateOneWithoutResourceInput", + "name": "EthBlockUpdateManyWithoutMinerInput", "ofType": null }, "defaultValue": null }, { - "name": "Project", + "name": "UserAuthed", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutResourceInput", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null @@ -236110,26 +88052,36 @@ }, { "kind": "INPUT_OBJECT", - "name": "ResourceCreateWithoutTopicInput", + "name": "EthAccountUpdateWithoutCreatedByDataInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "code", + "name": "description", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Json", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "address", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null @@ -236139,13 +88091,13 @@ "description": null, "type": { "kind": "ENUM", - "name": "ResourceType", + "name": "EthAccountType", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "source", "description": null, "type": { "kind": "SCALAR", @@ -236155,7 +88107,7 @@ "defaultValue": null }, { - "name": "longtitle", + "name": "bytecode", "description": null, "type": { "kind": "SCALAR", @@ -236165,7 +88117,7 @@ "defaultValue": null }, { - "name": "content", + "name": "abi", "description": null, "type": { "kind": "SCALAR", @@ -236175,321 +88127,343 @@ "defaultValue": null }, { - "name": "contentText", + "name": "Transaction", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "EthTransactionUpdateOneWithoutAccountInput", "ofType": null }, "defaultValue": null }, { - "name": "published", + "name": "IncomeTransactions", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "EthTransactionUpdateManyWithoutReceiverInput", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "OutcomeTransactions", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "EthTransactionUpdateManyWithoutSenderInput", "ofType": null }, "defaultValue": null }, { - "name": "hidemenu", + "name": "ContractSource", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "EthContractSourceUpdateOneWithoutAccountsInput", "ofType": null }, "defaultValue": null }, { - "name": "searchable", + "name": "BlocksMined", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "EthBlockUpdateManyWithoutMinerInput", "ofType": null }, "defaultValue": null }, { - "name": "uri", + "name": "UserAuthed", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthAccountUpdateWithoutIncomeTransactionsDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "isfolder", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "rating", + "name": "description", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "positiveVotesCount", + "name": "address", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "negativeVotesCount", + "name": "type", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "EthAccountType", "ofType": null }, "defaultValue": null }, { - "name": "neutralVotesCount", + "name": "source", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "bytecode", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "mockUpdate", + "name": "abi", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "components", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutEthAccountsInput", "ofType": null }, "defaultValue": null }, { - "name": "commentOldID", + "name": "Transaction", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "EthTransactionUpdateOneWithoutAccountInput", "ofType": null }, "defaultValue": null }, { - "name": "class_key", + "name": "OutcomeTransactions", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "EthTransactionUpdateManyWithoutSenderInput", "ofType": null }, "defaultValue": null }, { - "name": "template", + "name": "ContractSource", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "EthContractSourceUpdateOneWithoutAccountsInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "BlocksMined", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutResourcesInput", + "name": "EthBlockUpdateManyWithoutMinerInput", "ofType": null }, "defaultValue": null }, { - "name": "Parent", + "name": "UserAuthed", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutChildsInput", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthAccountUpdateWithoutOutcomeTransactionsDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Childs", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutParentInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProject", + "name": "description", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutPrismaResourcesInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "Comments", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutTopicInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "type", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutResourceInput", + "kind": "ENUM", + "name": "EthAccountType", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "source", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Blog", + "name": "bytecode", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallenge", + "name": "abi", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCreateOneWithoutTopicInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "Galleries", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "GalleryCreateManyWithoutResourceInput", + "name": "UserUpdateOneWithoutEthAccountsInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccount", + "name": "Transaction", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutResourcesInput", + "name": "EthTransactionUpdateOneWithoutAccountInput", "ofType": null }, "defaultValue": null }, { - "name": "Image", + "name": "IncomeTransactions", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FileCreateOneWithoutImageResourceInput", + "name": "EthTransactionUpdateManyWithoutReceiverInput", "ofType": null }, "defaultValue": null }, { - "name": "Service", + "name": "ContractSource", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ServiceCreateOneWithoutResourceInput", + "name": "EthContractSourceUpdateOneWithoutAccountsInput", "ofType": null }, "defaultValue": null }, { - "name": "Team", + "name": "BlocksMined", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutResourceInput", + "name": "EthBlockUpdateManyWithoutMinerInput", "ofType": null }, "defaultValue": null }, { - "name": "Project", + "name": "UserAuthed", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutResourceInput", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null @@ -236501,26 +88475,36 @@ }, { "kind": "INPUT_OBJECT", - "name": "ResourceCreateWithoutVotesInput", + "name": "EthAccountUpdateWithoutTransactionDataInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "code", + "name": "description", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Json", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "address", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null @@ -236530,13 +88514,13 @@ "description": null, "type": { "kind": "ENUM", - "name": "ResourceType", + "name": "EthAccountType", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "source", "description": null, "type": { "kind": "SCALAR", @@ -236546,7 +88530,7 @@ "defaultValue": null }, { - "name": "longtitle", + "name": "bytecode", "description": null, "type": { "kind": "SCALAR", @@ -236556,7 +88540,7 @@ "defaultValue": null }, { - "name": "content", + "name": "abi", "description": null, "type": { "kind": "SCALAR", @@ -236566,321 +88550,408 @@ "defaultValue": null }, { - "name": "contentText", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutEthAccountsInput", "ofType": null }, "defaultValue": null }, { - "name": "published", + "name": "IncomeTransactions", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "EthTransactionUpdateManyWithoutReceiverInput", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "OutcomeTransactions", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "EthTransactionUpdateManyWithoutSenderInput", "ofType": null }, "defaultValue": null }, { - "name": "hidemenu", + "name": "ContractSource", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "EthContractSourceUpdateOneWithoutAccountsInput", "ofType": null }, "defaultValue": null }, { - "name": "searchable", + "name": "BlocksMined", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "EthBlockUpdateManyWithoutMinerInput", "ofType": null }, "defaultValue": null }, { - "name": "uri", + "name": "UserAuthed", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthAccountUpdateWithWhereUniqueWithoutContractSourceInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "isfolder", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthAccountWhereUniqueInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "rating", + "name": "data", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthAccountUpdateWithoutContractSourceDataInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthAccountUpdateWithWhereUniqueWithoutCreatedByInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "positiveVotesCount", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthAccountWhereUniqueInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "negativeVotesCount", + "name": "data", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthAccountUpdateWithoutCreatedByDataInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthAccountUpsertWithWhereUniqueWithoutContractSourceInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "neutralVotesCount", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthAccountWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthAccountUpsertWithWhereUniqueWithoutCreatedByInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "oldID", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthAccountWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthBlockCreateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "mockUpdate", + "name": "hash", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "components", + "name": "number", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "defaultValue": null }, { - "name": "commentOldID", + "name": "difficulty", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "class_key", + "name": "totalDifficulty", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "template", + "name": "extraData", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "gasLimit", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutResourcesInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Parent", + "name": "gasUsed", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutChildsInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Childs", + "name": "mixHash", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutParentInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProject", + "name": "nonce", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutPrismaResourcesInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Topic", + "name": "parentHash", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutCommentsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Comments", + "name": "receiptsRoot", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutTopicInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "sha3Uncles", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Blog", + "name": "size", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallenge", + "name": "stateRoot", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCreateOneWithoutTopicInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Galleries", + "name": "date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "GalleryCreateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "EthAccount", + "name": "transactionsRoot", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutResourcesInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Image", + "name": "transactions_count", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateOneWithoutImageResourceInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Service", + "name": "Miner", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ServiceCreateOneWithoutResourceInput", + "name": "EthAccountCreateOneWithoutBlocksMinedInput", "ofType": null }, "defaultValue": null }, { - "name": "Team", + "name": "Transactions", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutResourceInput", + "name": "EthTransactionCreateManyWithoutBlockInput", "ofType": null }, "defaultValue": null }, { - "name": "Project", + "name": "Uncles", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneWithoutResourceInput", + "name": "EthBlockCreateManyInput", "ofType": null }, "defaultValue": null @@ -236892,68 +88963,24 @@ }, { "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateInput", + "name": "EthTransactionCreateManyWithoutBlockInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "TagStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Resource", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutTagsInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "Tag", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TagCreateOneWithoutResourcesInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "CreatedBy", + "name": "connect", "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutResourceTagsInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthTransactionWhereUniqueInput", + "ofType": null + } } }, "defaultValue": null @@ -236965,7 +88992,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "TagCreateOneWithoutResourcesInput", + "name": "EthBlockCreateManyInput", "description": null, "fields": null, "inputFields": [ @@ -236973,9 +89000,17 @@ "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagWhereUniqueInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthBlockWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null } @@ -236986,7 +89021,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutResourceTagsInput", + "name": "EthBlockCreateOneWithoutTransactionsInput", "description": null, "fields": null, "inputFields": [ @@ -236995,7 +89030,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", + "name": "EthBlockWhereUniqueInput", "ofType": null }, "defaultValue": null @@ -237007,466 +89042,300 @@ }, { "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutCreatedByInput", + "name": "EthBlockCreateWithoutMinerInput", "description": null, "fields": null, "inputFields": [ { - "name": "connect", + "name": "hash", "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutTagInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "number", "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "difficulty", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "status", + "name": "totalDifficulty", "description": null, "type": { - "kind": "ENUM", - "name": "TagStatus", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Resource", + "name": "extraData", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutTagsInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "Tag", + "name": "gasLimit", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TagCreateOneWithoutResourcesInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateWithoutResourceInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "gasUsed", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "status", + "name": "mixHash", "description": null, "type": { - "kind": "ENUM", - "name": "TagStatus", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tag", + "name": "nonce", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TagCreateOneWithoutResourcesInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "parentHash", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutResourceTagsInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateWithoutTagInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "receiptsRoot", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "status", + "name": "sha3Uncles", "description": null, "type": { - "kind": "ENUM", - "name": "TagStatus", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Resource", + "name": "size", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutTagsInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "stateRoot", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutResourceTagsInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ResourceTagPreviousValues", - "description": null, - "fields": [ + }, { - "name": "id", + "name": "date", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "createdAt", + "name": "transactionsRoot", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedAt", + "name": "transactions_count", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "status", + "name": "Transactions", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TagStatus", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "EthTransactionCreateManyWithoutBlockInput", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null + }, + { + "name": "Uncles", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "EthBlockCreateManyInput", + "ofType": null + }, + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "ResourceTagSubscriptionPayload", + "kind": "INPUT_OBJECT", + "name": "EthBlockCreateWithoutTransactionsInput", "description": null, - "fields": [ + "fields": null, + "inputFields": [ { - "name": "mutation", + "name": "hash", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "MutationType", + "kind": "SCALAR", + "name": "String", "ofType": null } }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ResourceTag", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedFields", + "name": "number", "description": null, - "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "previousValues", + "name": "difficulty", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "ResourceTagPreviousValues", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceTagSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ + "defaultValue": null + }, { - "name": "AND", - "description": "Logical AND on all given filters.", + "name": "totalDifficulty", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagSubscriptionWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", + "name": "extraData", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagSubscriptionWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + "name": "gasLimit", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagSubscriptionWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null }, { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", + "name": "gasUsed", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", + "name": "mixHash", + "description": null, "type": { "kind": "SCALAR", "name": "String", @@ -237475,182 +89344,111 @@ "defaultValue": null }, { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", + "name": "nonce", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", + "name": "parentHash", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "node", + "name": "receiptsRoot", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "status", + "name": "sha3Uncles", "description": null, "type": { - "kind": "ENUM", - "name": "TagStatus", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Resource", + "name": "size", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneRequiredWithoutTagsInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Tag", + "name": "stateRoot", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagUpdateOneRequiredWithoutResourcesInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutResourceTagsInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneRequiredWithoutTagsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "transactionsRoot", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TagUpdateOneRequiredWithoutResourcesInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "transactions_count", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagWhereUniqueInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutResourceTagsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "Miner", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", + "name": "EthAccountCreateOneWithoutBlocksMinedInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "status", + "name": "Uncles", "description": null, "type": { - "kind": "ENUM", - "name": "TagStatus", + "kind": "INPUT_OBJECT", + "name": "EthBlockCreateManyInput", "ofType": null }, "defaultValue": null @@ -237661,551 +89459,428 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutCreatedByInput", + "kind": "OBJECT", + "name": "EthBlockPreviousValues", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "connect", + "name": "id", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "set", + "name": "createdAt", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "disconnect", + "name": "updatedAt", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updateMany", + "name": "hash", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithWhereNestedInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutTagInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", + "name": "number", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "set", + "name": "difficulty", "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "disconnect", + "name": "totalDifficulty", "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updateMany", + "name": "extraData", "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithWhereNestedInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "deleteMany", + "name": "gasLimit", "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagScalarWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateWithoutCreatedByDataInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "status", + "name": "gasUsed", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "TagStatus", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Resource", + "name": "mixHash", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneRequiredWithoutTagsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Tag", + "name": "nonce", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TagUpdateOneRequiredWithoutResourcesInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateWithoutResourceDataInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "status", + "name": "parentHash", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "TagStatus", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Tag", + "name": "receiptsRoot", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TagUpdateOneRequiredWithoutResourcesInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "sha3Uncles", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutResourceTagsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateWithoutTagDataInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "status", + "name": "size", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "TagStatus", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Resource", + "name": "stateRoot", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneRequiredWithoutTagsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "date", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutResourceTagsInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateWithWhereUniqueWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "where", + "name": "transactionsRoot", "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", + "name": "transactions_count", "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateWithoutCreatedByDataInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateWithWhereUniqueWithoutResourceInput", + "kind": "OBJECT", + "name": "EthBlockSubscriptionPayload", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "where", + "name": "mutation", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereUniqueInput", + "kind": "ENUM", + "name": "MutationType", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", + "name": "node", "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateWithoutResourceDataInput", - "ofType": null - } + "kind": "OBJECT", + "name": "EthBlock", + "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateWithWhereUniqueWithoutTagInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "where", + "name": "updatedFields", "description": null, + "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", + "name": "previousValues", "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateWithoutTagDataInput", - "ofType": null - } + "kind": "OBJECT", + "name": "EthBlockPreviousValues", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "ResourceTagUpsertWithWhereUniqueWithoutCreatedByInput", + "name": "EthBlockSubscriptionWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "where", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthBlockSubscriptionWhereInput", + "ofType": null + } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpsertWithWhereUniqueWithoutResourceInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthBlockSubscriptionWhereInput", + "ofType": null + } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpsertWithWhereUniqueWithoutTagInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthBlockSubscriptionWhereInput", + "ofType": null + } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null }, { - "name": "type", - "description": null, + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", "type": { - "kind": "ENUM", - "name": "ResourceType", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "name", - "description": null, + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", "type": { "kind": "SCALAR", "name": "String", @@ -238214,77 +89889,104 @@ "defaultValue": null }, { - "name": "longtitle", - "description": null, + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "content", - "description": null, + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "contentText", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "EthBlockWhereInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthBlockUpdateDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "published", + "name": "hash", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "number", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "hidemenu", + "name": "difficulty", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "searchable", + "name": "totalDifficulty", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "uri", + "name": "extraData", "description": null, "type": { "kind": "SCALAR", @@ -238294,17 +89996,7 @@ "defaultValue": null }, { - "name": "isfolder", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rating", + "name": "gasLimit", "description": null, "type": { "kind": "SCALAR", @@ -238314,67 +90006,67 @@ "defaultValue": null }, { - "name": "positiveVotesCount", + "name": "gasUsed", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "negativeVotesCount", + "name": "mixHash", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "neutralVotesCount", + "name": "nonce", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "parentHash", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "mockUpdate", + "name": "receiptsRoot", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "components", + "name": "sha3Uncles", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "commentOldID", + "name": "size", "description": null, "type": { "kind": "SCALAR", @@ -238384,7 +90076,7 @@ "defaultValue": null }, { - "name": "class_key", + "name": "stateRoot", "description": null, "type": { "kind": "SCALAR", @@ -238394,172 +90086,156 @@ "defaultValue": null }, { - "name": "template", + "name": "date", "description": null, "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutResourcesInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Parent", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutChildsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutParentInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaProject", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutPrismaResourcesInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Topic", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutCommentsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Comments", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutTopicInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Votes", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutResourceInput", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "transactionsRoot", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Blog", + "name": "transactions_count", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallenge", + "name": "Miner", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeUpdateOneWithoutTopicInput", + "name": "EthAccountUpdateOneWithoutBlocksMinedInput", "ofType": null }, "defaultValue": null }, { - "name": "Galleries", + "name": "Transactions", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "GalleryUpdateManyWithoutResourceInput", + "name": "EthTransactionUpdateManyWithoutBlockInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccount", + "name": "Uncles", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutResourcesInput", + "name": "EthBlockUpdateManyInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthTransactionUpdateManyWithoutBlockInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Image", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateOneWithoutImageResourceInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthTransactionWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Service", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceUpdateOneWithoutResourceInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthTransactionWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthBlockUpdateManyInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Team", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutResourceInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthBlockWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Project", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutResourceInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthBlockWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null } @@ -238570,112 +90246,112 @@ }, { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyMutationInput", + "name": "EthBlockUpdateInput", "description": null, "fields": null, "inputFields": [ { - "name": "code", + "name": "hash", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "type", + "name": "number", "description": null, "type": { - "kind": "ENUM", - "name": "ResourceType", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "difficulty", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "longtitle", + "name": "totalDifficulty", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "content", + "name": "extraData", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "contentText", + "name": "gasLimit", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "published", + "name": "gasUsed", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "mixHash", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "hidemenu", + "name": "nonce", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "searchable", + "name": "parentHash", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "uri", + "name": "receiptsRoot", "description": null, "type": { "kind": "SCALAR", @@ -238685,57 +90361,57 @@ "defaultValue": null }, { - "name": "isfolder", + "name": "sha3Uncles", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "rating", + "name": "size", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "positiveVotesCount", + "name": "stateRoot", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "negativeVotesCount", + "name": "date", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "neutralVotesCount", + "name": "transactionsRoot", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "transactions_count", "description": null, "type": { "kind": "SCALAR", @@ -238745,51 +90421,62 @@ "defaultValue": null }, { - "name": "mockUpdate", + "name": "Miner", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "EthAccountUpdateOneWithoutBlocksMinedInput", "ofType": null }, "defaultValue": null }, { - "name": "components", + "name": "Transactions", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", + "kind": "INPUT_OBJECT", + "name": "EthTransactionUpdateManyWithoutBlockInput", "ofType": null }, "defaultValue": null }, { - "name": "commentOldID", + "name": "Uncles", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "EthBlockUpdateManyInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthBlockUpdateOneWithoutTransactionsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "class_key", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "EthBlockWhereUniqueInput", "ofType": null }, "defaultValue": null }, { - "name": "template", + "name": "disconnect", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "defaultValue": null @@ -238801,154 +90488,92 @@ }, { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutCreatedByInput", + "name": "EthBlockUpdateWithoutMinerDataInput", "description": null, "fields": null, "inputFields": [ { - "name": "connect", + "name": "hash", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "set", + "name": "number", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "disconnect", + "name": "difficulty", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null }, { - "name": "updateMany", + "name": "totalDifficulty", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithWhereNestedInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null }, { - "name": "deleteMany", + "name": "extraData", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceScalarWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneRequiredWithoutVotesInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "gasLimit", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateWithoutChildsDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "code", + "name": "gasUsed", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "type", + "name": "mixHash", "description": null, "type": { - "kind": "ENUM", - "name": "ResourceType", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "nonce", "description": null, "type": { "kind": "SCALAR", @@ -238958,7 +90583,7 @@ "defaultValue": null }, { - "name": "longtitle", + "name": "parentHash", "description": null, "type": { "kind": "SCALAR", @@ -238968,17 +90593,17 @@ "defaultValue": null }, { - "name": "content", + "name": "receiptsRoot", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "contentText", + "name": "sha3Uncles", "description": null, "type": { "kind": "SCALAR", @@ -238988,87 +90613,98 @@ "defaultValue": null }, { - "name": "published", + "name": "size", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "stateRoot", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "hidemenu", + "name": "date", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "searchable", + "name": "transactionsRoot", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "uri", + "name": "transactions_count", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "isfolder", + "name": "Transactions", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "EthTransactionUpdateManyWithoutBlockInput", "ofType": null }, "defaultValue": null }, { - "name": "rating", + "name": "Uncles", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "EthBlockUpdateManyInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthBlockUpdateWithoutTransactionsDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "positiveVotesCount", + "name": "hash", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "negativeVotesCount", + "name": "number", "description": null, "type": { "kind": "SCALAR", @@ -239078,57 +90714,57 @@ "defaultValue": null }, { - "name": "neutralVotesCount", + "name": "difficulty", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "totalDifficulty", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "mockUpdate", + "name": "extraData", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "components", + "name": "gasLimit", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "commentOldID", + "name": "gasUsed", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "class_key", + "name": "mixHash", "description": null, "type": { "kind": "SCALAR", @@ -239138,162 +90774,240 @@ "defaultValue": null }, { - "name": "template", + "name": "nonce", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "parentHash", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutResourcesInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Parent", + "name": "receiptsRoot", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutChildsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProject", + "name": "sha3Uncles", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutPrismaResourcesInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Topic", + "name": "size", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutCommentsInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Comments", + "name": "stateRoot", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutTopicInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "transactionsRoot", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Blog", + "name": "transactions_count", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallenge", + "name": "Miner", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeUpdateOneWithoutTopicInput", + "name": "EthAccountUpdateOneWithoutBlocksMinedInput", "ofType": null }, "defaultValue": null }, { - "name": "Galleries", + "name": "Uncles", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "GalleryUpdateManyWithoutResourceInput", + "name": "EthBlockUpdateManyInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthBlockUpdateWithWhereUniqueNestedInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "EthAccount", + "name": "where", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutResourcesInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthBlockWhereUniqueInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "Image", + "name": "data", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateOneWithoutImageResourceInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthBlockUpdateDataInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthBlockUpdateWithWhereUniqueWithoutMinerInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Service", + "name": "where", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceUpdateOneWithoutResourceInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthBlockWhereUniqueInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "Team", + "name": "data", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutResourceInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthBlockUpdateWithoutMinerDataInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthBlockUpsertWithWhereUniqueNestedInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "where", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthBlockWhereUniqueInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthBlockUpsertWithWhereUniqueWithoutMinerInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Project", + "name": "where", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutResourceInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthBlockWhereUniqueInput", + "ofType": null + } }, "defaultValue": null } @@ -239304,42 +91018,65 @@ }, { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateWithoutCodeChallengeDataInput", + "name": "EthContractSourceCreateManyInput", "description": null, "fields": null, "inputFields": [ { - "name": "code", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthContractSourceWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthContractSourceCreateWithoutAccountsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "type", + "name": "name", "description": null, "type": { - "kind": "ENUM", - "name": "ResourceType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "name", + "name": "description", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "longtitle", + "name": "source", "description": null, "type": { "kind": "SCALAR", @@ -239349,168 +91086,275 @@ "defaultValue": null }, { - "name": "content", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EthContractSourcePreviousValues", + "description": null, + "fields": [ { - "name": "contentText", + "name": "id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "published", + "name": "createdAt", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "deleted", + "name": "updatedAt", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "hidemenu", + "name": "name", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "searchable", + "name": "description", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Json", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "uri", + "name": "source", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - }, - { - "name": "isfolder", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EthContractSourceSubscriptionPayload", + "description": null, + "fields": [ { - "name": "rating", + "name": "mutation", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "positiveVotesCount", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "EthContractSource", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "negativeVotesCount", + "name": "updatedFields", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "neutralVotesCount", + "name": "previousValues", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "EthContractSourcePreviousValues", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthContractSourceSubscriptionWhereInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "oldID", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthContractSourceSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "mockUpdate", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthContractSourceSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "components", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthContractSourceSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "commentOldID", - "description": null, + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "class_key", - "description": null, + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", "type": { "kind": "SCALAR", "name": "String", @@ -239519,162 +91363,246 @@ "defaultValue": null }, { - "name": "template", - "description": null, + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutResourcesInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Parent", + "name": "node", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutChildsInput", + "name": "EthContractSourceWhereInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthContractSourceUpdateDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Childs", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutParentInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProject", + "name": "description", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutPrismaResourcesInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "Topic", + "name": "source", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutCommentsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Comments", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutTopicInput", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "Accounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutResourceInput", + "name": "EthAccountUpdateManyWithoutContractSourceInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthContractSourceUpdateManyInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Tags", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutResourceInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthContractSourceWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Blog", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthContractSourceWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthContractSourceUpdateWithoutAccountsDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Galleries", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "GalleryUpdateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthAccount", + "name": "description", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutResourcesInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "Image", + "name": "source", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateOneWithoutImageResourceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Service", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ServiceUpdateOneWithoutResourceInput", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthContractSourceUpdateWithWhereUniqueNestedInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Team", + "name": "where", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutResourceInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthContractSourceWhereUniqueInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "Project", + "name": "data", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutResourceInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthContractSourceUpdateDataInput", + "ofType": null + } }, "defaultValue": null } @@ -239685,42 +91613,61 @@ }, { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateWithoutCommentsDataInput", + "name": "EthContractSourceUpsertWithWhereUniqueNestedInput", "description": null, "fields": null, "inputFields": [ { - "name": "code", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthContractSourceWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthTransactionCreateWithoutAccountInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "type", + "name": "chainId", "description": null, "type": { - "kind": "ENUM", - "name": "ResourceType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "defaultValue": null }, { - "name": "name", + "name": "amount", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "longtitle", + "name": "input", "description": null, "type": { "kind": "SCALAR", @@ -239730,127 +91677,146 @@ "defaultValue": null }, { - "name": "content", + "name": "index", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "contentText", + "name": "address", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "published", + "name": "type", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "EthTransactionType", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "v", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "hidemenu", + "name": "r", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "searchable", + "name": "s", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "uri", + "name": "Sender", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "EthAccountCreateOneWithoutOutcomeTransactionsInput", "ofType": null }, "defaultValue": null }, { - "name": "isfolder", + "name": "Receiver", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "EthAccountCreateOneWithoutIncomeTransactionsInput", "ofType": null }, "defaultValue": null }, { - "name": "rating", + "name": "Block", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "EthBlockCreateOneWithoutTransactionsInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthTransactionCreateWithoutBlockInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "positiveVotesCount", + "name": "chainId", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "defaultValue": null }, { - "name": "negativeVotesCount", + "name": "amount", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "neutralVotesCount", + "name": "input", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "index", "description": null, "type": { "kind": "SCALAR", @@ -239860,37 +91826,41 @@ "defaultValue": null }, { - "name": "mockUpdate", + "name": "address", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "components", + "name": "type", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", + "kind": "ENUM", + "name": "EthTransactionType", "ofType": null }, "defaultValue": null }, { - "name": "commentOldID", + "name": "v", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "class_key", + "name": "r", "description": null, "type": { "kind": "SCALAR", @@ -239900,161 +91870,180 @@ "defaultValue": null }, { - "name": "template", + "name": "s", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "Sender", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutResourcesInput", + "name": "EthAccountCreateOneWithoutOutcomeTransactionsInput", "ofType": null }, "defaultValue": null }, { - "name": "Parent", + "name": "Receiver", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutChildsInput", + "name": "EthAccountCreateOneWithoutIncomeTransactionsInput", "ofType": null }, "defaultValue": null }, { - "name": "Childs", + "name": "Account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutParentInput", + "name": "EthAccountCreateOneWithoutTransactionInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthTransactionCreateWithoutReceiverInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "PrismaProject", + "name": "chainId", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutPrismaResourcesInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "defaultValue": null }, { - "name": "Topic", + "name": "amount", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutCommentsInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "input", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "index", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Blog", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "CodeChallenge", + "name": "type", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeUpdateOneWithoutTopicInput", + "kind": "ENUM", + "name": "EthTransactionType", "ofType": null }, "defaultValue": null }, { - "name": "Galleries", + "name": "v", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "GalleryUpdateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthAccount", + "name": "r", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutResourcesInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Image", + "name": "s", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateOneWithoutImageResourceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Service", + "name": "Sender", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ServiceUpdateOneWithoutResourceInput", + "name": "EthAccountCreateOneWithoutOutcomeTransactionsInput", "ofType": null }, "defaultValue": null }, { - "name": "Team", + "name": "Account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutResourceInput", + "name": "EthAccountCreateOneWithoutTransactionInput", "ofType": null }, "defaultValue": null }, { - "name": "Project", + "name": "Block", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutResourceInput", + "name": "EthBlockCreateOneWithoutTransactionsInput", "ofType": null }, "defaultValue": null @@ -240066,32 +92055,36 @@ }, { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateWithoutCreatedByDataInput", + "name": "EthTransactionCreateWithoutSenderInput", "description": null, "fields": null, "inputFields": [ { - "name": "code", + "name": "chainId", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "defaultValue": null }, { - "name": "type", + "name": "amount", "description": null, "type": { - "kind": "ENUM", - "name": "ResourceType", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "input", "description": null, "type": { "kind": "SCALAR", @@ -240101,127 +92094,142 @@ "defaultValue": null }, { - "name": "longtitle", + "name": "index", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "content", + "name": "address", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "contentText", + "name": "type", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "EthTransactionType", "ofType": null }, "defaultValue": null }, { - "name": "published", + "name": "v", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "r", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "hidemenu", + "name": "s", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "searchable", + "name": "Receiver", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "EthAccountCreateOneWithoutIncomeTransactionsInput", "ofType": null }, "defaultValue": null }, { - "name": "uri", + "name": "Account", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "EthAccountCreateOneWithoutTransactionInput", "ofType": null }, "defaultValue": null }, { - "name": "isfolder", + "name": "Block", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "EthBlockCreateOneWithoutTransactionsInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthTransactionUpdateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "rating", + "name": "chainId", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "positiveVotesCount", + "name": "amount", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "negativeVotesCount", + "name": "input", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "neutralVotesCount", + "name": "index", "description": null, "type": { "kind": "SCALAR", @@ -240231,47 +92239,47 @@ "defaultValue": null }, { - "name": "oldID", + "name": "address", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "mockUpdate", + "name": "type", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "ENUM", + "name": "EthTransactionType", "ofType": null }, "defaultValue": null }, { - "name": "components", + "name": "v", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "commentOldID", + "name": "r", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "class_key", + "name": "s", "description": null, "type": { "kind": "SCALAR", @@ -240281,161 +92289,172 @@ "defaultValue": null }, { - "name": "template", + "name": "Sender", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "EthAccountUpdateOneWithoutOutcomeTransactionsInput", "ofType": null }, "defaultValue": null }, { - "name": "Parent", + "name": "Receiver", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutChildsInput", + "name": "EthAccountUpdateOneWithoutIncomeTransactionsInput", "ofType": null }, "defaultValue": null }, { - "name": "Childs", + "name": "Account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutParentInput", + "name": "EthAccountUpdateOneWithoutTransactionInput", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProject", + "name": "Block", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutPrismaResourcesInput", + "name": "EthBlockUpdateOneWithoutTransactionsInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthTransactionUpdateWithoutAccountDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Topic", + "name": "chainId", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutCommentsInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Comments", + "name": "amount", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutTopicInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "input", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "index", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Blog", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallenge", + "name": "type", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeUpdateOneWithoutTopicInput", + "kind": "ENUM", + "name": "EthTransactionType", "ofType": null }, "defaultValue": null }, { - "name": "Galleries", + "name": "v", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "GalleryUpdateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthAccount", + "name": "r", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutResourcesInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Image", + "name": "s", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateOneWithoutImageResourceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Service", + "name": "Sender", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ServiceUpdateOneWithoutResourceInput", + "name": "EthAccountUpdateOneWithoutOutcomeTransactionsInput", "ofType": null }, "defaultValue": null }, { - "name": "Team", + "name": "Receiver", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutResourceInput", + "name": "EthAccountUpdateOneWithoutIncomeTransactionsInput", "ofType": null }, "defaultValue": null }, { - "name": "Project", + "name": "Block", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutResourceInput", + "name": "EthBlockUpdateOneWithoutTransactionsInput", "ofType": null }, "defaultValue": null @@ -240447,42 +92466,32 @@ }, { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateWithoutEthAccountDataInput", + "name": "EthTransactionUpdateWithoutBlockDataInput", "description": null, "fields": null, "inputFields": [ { - "name": "code", + "name": "chainId", "description": null, "type": { "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "ResourceType", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "amount", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "longtitle", + "name": "input", "description": null, "type": { "kind": "SCALAR", @@ -240492,17 +92501,17 @@ "defaultValue": null }, { - "name": "content", + "name": "index", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "contentText", + "name": "address", "description": null, "type": { "kind": "SCALAR", @@ -240512,77 +92521,88 @@ "defaultValue": null }, { - "name": "published", + "name": "type", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "EthTransactionType", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "v", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "hidemenu", + "name": "r", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "searchable", + "name": "s", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "uri", + "name": "Sender", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "EthAccountUpdateOneWithoutOutcomeTransactionsInput", "ofType": null }, "defaultValue": null }, { - "name": "isfolder", + "name": "Receiver", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "EthAccountUpdateOneWithoutIncomeTransactionsInput", "ofType": null }, "defaultValue": null }, { - "name": "rating", + "name": "Account", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "EthAccountUpdateOneWithoutTransactionInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthTransactionUpdateWithoutReceiverDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "positiveVotesCount", + "name": "chainId", "description": null, "type": { "kind": "SCALAR", @@ -240592,27 +92612,27 @@ "defaultValue": null }, { - "name": "negativeVotesCount", + "name": "amount", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "neutralVotesCount", + "name": "input", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "index", "description": null, "type": { "kind": "SCALAR", @@ -240622,37 +92642,37 @@ "defaultValue": null }, { - "name": "mockUpdate", + "name": "address", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "components", + "name": "type", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", + "kind": "ENUM", + "name": "EthTransactionType", "ofType": null }, "defaultValue": null }, { - "name": "commentOldID", + "name": "v", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "class_key", + "name": "r", "description": null, "type": { "kind": "SCALAR", @@ -240662,161 +92682,172 @@ "defaultValue": null }, { - "name": "template", + "name": "s", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "Sender", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutResourcesInput", + "name": "EthAccountUpdateOneWithoutOutcomeTransactionsInput", "ofType": null }, "defaultValue": null }, { - "name": "Parent", + "name": "Account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutChildsInput", + "name": "EthAccountUpdateOneWithoutTransactionInput", "ofType": null }, "defaultValue": null }, { - "name": "Childs", + "name": "Block", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutParentInput", + "name": "EthBlockUpdateOneWithoutTransactionsInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthTransactionUpdateWithoutSenderDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "PrismaProject", + "name": "chainId", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutPrismaResourcesInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Topic", + "name": "amount", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutCommentsInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Comments", + "name": "input", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutTopicInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "index", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Blog", + "name": "type", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneInput", + "kind": "ENUM", + "name": "EthTransactionType", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallenge", + "name": "v", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeUpdateOneWithoutTopicInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Galleries", + "name": "r", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "GalleryUpdateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Image", + "name": "s", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateOneWithoutImageResourceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Service", + "name": "Receiver", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ServiceUpdateOneWithoutResourceInput", + "name": "EthAccountUpdateOneWithoutIncomeTransactionsInput", "ofType": null }, "defaultValue": null }, { - "name": "Team", + "name": "Account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutResourceInput", + "name": "EthAccountUpdateOneWithoutTransactionInput", "ofType": null }, "defaultValue": null }, { - "name": "Project", + "name": "Block", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutResourceInput", + "name": "EthBlockUpdateOneWithoutTransactionsInput", "ofType": null }, "defaultValue": null @@ -240828,212 +92859,372 @@ }, { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateWithoutGalleriesDataInput", + "name": "EthTransactionUpdateWithWhereUniqueWithoutBlockInput", "description": null, "fields": null, "inputFields": [ { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", + "name": "where", "description": null, "type": { - "kind": "ENUM", - "name": "ResourceType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthTransactionWhereUniqueInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "name", + "name": "data", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthTransactionUpdateWithoutBlockDataInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthTransactionUpdateWithWhereUniqueWithoutReceiverInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "longtitle", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthTransactionWhereUniqueInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "content", + "name": "data", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthTransactionUpdateWithoutReceiverDataInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthTransactionUpdateWithWhereUniqueWithoutSenderInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "contentText", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthTransactionWhereUniqueInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "published", + "name": "data", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthTransactionUpdateWithoutSenderDataInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthTransactionUpsertWithWhereUniqueWithoutBlockInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "deleted", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthTransactionWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthTransactionUpsertWithWhereUniqueWithoutReceiverInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "hidemenu", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthTransactionWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthTransactionUpsertWithWhereUniqueWithoutSenderInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "searchable", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EthTransactionWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "FileConnection", + "description": "A connection to a list of items.", + "fields": [ { - "name": "uri", - "description": null, + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "isfolder", - "description": null, + "name": "edges", + "description": "A list of edges.", + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FileEdge", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "rating", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AggregateFile", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "FileEdge", + "description": "An edge in a connection.", + "fields": [ { - "name": "positiveVotesCount", - "description": null, + "name": "node", + "description": "The item at the end of the edge.", + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "File", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "negativeVotesCount", - "description": null, + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "FileCreateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "neutralVotesCount", + "name": "path", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "oldID", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "mockUpdate", + "name": "filename", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "components", + "name": "mimetype", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "commentOldID", + "name": "encoding", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "class_key", + "name": "hash", "description": null, "type": { "kind": "SCALAR", @@ -241043,11 +93234,11 @@ "defaultValue": null }, { - "name": "template", + "name": "size", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null @@ -241056,148 +93247,217 @@ "name": "CreatedBy", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutResourcesInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Parent", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutChildsInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutFilesInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "Childs", + "name": "ImageResource", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutParentInput", + "name": "ResourceCreateOneWithoutImageInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutFilesInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "PrismaProject", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutPrismaResourcesInput", + "name": "UserWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceCreateOneWithoutImageInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Topic", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutCommentsInput", + "name": "ResourceWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "FileCreateManyWithoutCreatedByInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Comments", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutTopicInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FileWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "FileWhereUniqueInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Votes", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "FileCreateWithoutCreatedByInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Tags", + "name": "path", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutResourceInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "Blog", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallenge", + "name": "filename", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeUpdateOneWithoutTopicInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthAccount", + "name": "mimetype", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutResourcesInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "Image", + "name": "encoding", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateOneWithoutImageResourceInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "Service", + "name": "hash", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceUpdateOneWithoutResourceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Team", + "name": "size", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutResourceInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Project", + "name": "ImageResource", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutResourceInput", + "name": "ResourceCreateOneWithoutImageInput", "ofType": null }, "defaultValue": null @@ -241209,32 +93469,36 @@ }, { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateWithoutImageDataInput", + "name": "FileCreateWithoutImageResourceInput", "description": null, "fields": null, "inputFields": [ { - "name": "code", + "name": "path", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "type", + "name": "name", "description": null, "type": { - "kind": "ENUM", - "name": "ResourceType", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "filename", "description": null, "type": { "kind": "SCALAR", @@ -241244,27 +93508,35 @@ "defaultValue": null }, { - "name": "longtitle", + "name": "mimetype", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "content", + "name": "encoding", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "contentText", + "name": "hash", "description": null, "type": { "kind": "SCALAR", @@ -241274,311 +93546,511 @@ "defaultValue": null }, { - "name": "published", + "name": "size", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutFilesInput", + "ofType": null + } }, "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "FilePreviousValues", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "hidemenu", + "name": "path", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "searchable", + "name": "name", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "uri", + "name": "filename", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "isfolder", + "name": "mimetype", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "rating", + "name": "encoding", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "positiveVotesCount", + "name": "hash", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "negativeVotesCount", + "name": "size", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "FileSubscriptionPayload", + "description": null, + "fields": [ + { + "name": "mutation", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "neutralVotesCount", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "File", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "oldID", + "name": "updatedFields", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "mockUpdate", + "name": "previousValues", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "OBJECT", + "name": "FilePreviousValues", "ofType": null }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "FileSubscriptionWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": "Logical AND on all given filters.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FileSubscriptionWhereInput", + "ofType": null + } + } + }, "defaultValue": null }, { - "name": "components", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FileSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "commentOldID", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FileSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "class_key", - "description": null, + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "template", - "description": null, + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutResourcesInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Parent", - "description": null, + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutChildsInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Childs", + "name": "node", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutParentInput", + "name": "FileWhereInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "FileUpdateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "PrismaProject", + "name": "path", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutPrismaResourcesInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Topic", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutCommentsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Comments", + "name": "filename", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutTopicInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "mimetype", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "encoding", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Blog", + "name": "hash", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallenge", + "name": "size", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeUpdateOneWithoutTopicInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Galleries", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "GalleryUpdateManyWithoutResourceInput", + "name": "UserUpdateOneWithoutFilesInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccount", + "name": "ImageResource", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutResourcesInput", + "name": "ResourceUpdateOneWithoutImageInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutFilesInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Service", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ServiceUpdateOneWithoutResourceInput", + "name": "UserWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceUpdateOneWithoutImageInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Team", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutResourceInput", + "name": "ResourceWhereUniqueInput", "ofType": null }, "defaultValue": null }, { - "name": "Project", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutResourceInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null @@ -241590,32 +94062,59 @@ }, { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateWithoutParentDataInput", + "name": "FileUpdateManyWithoutCreatedByInput", "description": null, "fields": null, "inputFields": [ { - "name": "code", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FileWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "type", + "name": "disconnect", "description": null, "type": { - "kind": "ENUM", - "name": "ResourceType", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FileWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "FileUpdateWithoutCreatedByDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "name", + "name": "path", "description": null, "type": { "kind": "SCALAR", @@ -241625,7 +94124,7 @@ "defaultValue": null }, { - "name": "longtitle", + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -241635,17 +94134,17 @@ "defaultValue": null }, { - "name": "content", + "name": "filename", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "contentText", + "name": "mimetype", "description": null, "type": { "kind": "SCALAR", @@ -241655,47 +94154,58 @@ "defaultValue": null }, { - "name": "published", + "name": "encoding", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "hash", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "hidemenu", + "name": "size", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "searchable", + "name": "ImageResource", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "ResourceUpdateOneWithoutImageInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "FileUpdateWithoutImageResourceDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "uri", + "name": "path", "description": null, "type": { "kind": "SCALAR", @@ -241705,262 +94215,336 @@ "defaultValue": null }, { - "name": "isfolder", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "rating", + "name": "filename", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "positiveVotesCount", + "name": "mimetype", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "negativeVotesCount", + "name": "encoding", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "neutralVotesCount", + "name": "hash", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "size", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "mockUpdate", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutFilesInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "FileUpdateWithWhereUniqueWithoutCreatedByInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "components", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FileWhereUniqueInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "commentOldID", + "name": "data", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FileUpdateWithoutCreatedByDataInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "FileUpsertWithWhereUniqueWithoutCreatedByInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "class_key", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FileWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GameCreateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "template", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutResourcesInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutParentInput", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProject", + "name": "start_date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutPrismaResourcesInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Topic", + "name": "end_date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutCommentsInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Comments", + "name": "sequence", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutTopicInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutResourceInput", + "name": "UserCreateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "Tourney", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutResourceInput", + "name": "TourneyCreateOneWithoutGamesInput", "ofType": null }, "defaultValue": null }, { - "name": "Blog", + "name": "Users", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneInput", + "name": "UserCreateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallenge", + "name": "Teams", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeUpdateOneWithoutTopicInput", + "name": "TeamCreateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "Galleries", + "name": "Parent", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "GalleryUpdateManyWithoutResourceInput", + "name": "GameCreateOneWithoutChildsInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccount", + "name": "Childs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutResourcesInput", + "name": "GameCreateManyWithoutParentInput", "ofType": null }, "defaultValue": null }, { - "name": "Image", + "name": "Results", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FileUpdateOneWithoutImageResourceInput", + "name": "GameResultCreateManyWithoutGameInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TourneyCreateOneWithoutGamesInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Service", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ServiceUpdateOneWithoutResourceInput", + "name": "TourneyWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserCreateManyInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Team", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutResourceInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TeamCreateManyInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Project", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutResourceInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TeamWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null } @@ -241971,12 +94555,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateWithoutPrismaProjectDataInput", + "name": "TeamWhereUniqueInput", "description": null, "fields": null, "inputFields": [ { - "name": "code", + "name": "id", "description": null, "type": { "kind": "SCALAR", @@ -241984,169 +94568,270 @@ "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GameCreateOneWithoutChildsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "type", + "name": "connect", "description": null, "type": { - "kind": "ENUM", - "name": "ResourceType", + "kind": "INPUT_OBJECT", + "name": "GameWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GameCreateManyWithoutParentInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "name", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GameWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GameResultCreateManyWithoutGameInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "longtitle", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GameResultWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GameCreateManyWithoutTourneyInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "content", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GameWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GameCreateOneWithoutResultsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "contentText", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "GameWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GameCreateWithoutChildsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "published", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "start_date", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "hidemenu", + "name": "end_date", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "searchable", + "name": "sequence", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "uri", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserCreateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "isfolder", + "name": "Tourney", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "TourneyCreateOneWithoutGamesInput", "ofType": null }, "defaultValue": null }, { - "name": "rating", + "name": "Users", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "UserCreateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "positiveVotesCount", + "name": "Teams", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "TeamCreateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "negativeVotesCount", + "name": "Parent", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "GameCreateOneWithoutChildsInput", "ofType": null }, "defaultValue": null }, { - "name": "neutralVotesCount", + "name": "Results", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "GameResultCreateManyWithoutGameInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GameCreateWithoutParentInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "oldID", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "mockUpdate", + "name": "start_date", "description": null, "type": { "kind": "SCALAR", @@ -242156,17 +94841,17 @@ "defaultValue": null }, { - "name": "components", + "name": "end_date", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "commentOldID", + "name": "sequence", "description": null, "type": { "kind": "SCALAR", @@ -242176,171 +94861,172 @@ "defaultValue": null }, { - "name": "class_key", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "template", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "UserCreateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "Tourney", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutResourcesInput", + "name": "TourneyCreateOneWithoutGamesInput", "ofType": null }, "defaultValue": null }, { - "name": "Parent", + "name": "Users", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutChildsInput", + "name": "UserCreateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "Childs", + "name": "Teams", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutParentInput", + "name": "TeamCreateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "Topic", + "name": "Childs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutCommentsInput", + "name": "GameCreateManyWithoutParentInput", "ofType": null }, "defaultValue": null }, { - "name": "Comments", + "name": "Results", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutTopicInput", + "name": "GameResultCreateManyWithoutGameInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GameCreateWithoutResultsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Votes", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "start_date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Blog", + "name": "end_date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallenge", + "name": "sequence", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeUpdateOneWithoutTopicInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Galleries", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "GalleryUpdateManyWithoutResourceInput", + "name": "UserCreateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccount", + "name": "Tourney", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutResourcesInput", + "name": "TourneyCreateOneWithoutGamesInput", "ofType": null }, "defaultValue": null }, { - "name": "Image", + "name": "Users", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FileUpdateOneWithoutImageResourceInput", + "name": "UserCreateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "Service", + "name": "Teams", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ServiceUpdateOneWithoutResourceInput", + "name": "TeamCreateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "Team", + "name": "Parent", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutResourceInput", + "name": "GameCreateOneWithoutChildsInput", "ofType": null }, "defaultValue": null }, { - "name": "Project", + "name": "Childs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutResourceInput", + "name": "GameCreateManyWithoutParentInput", "ofType": null }, "defaultValue": null @@ -242352,212 +95038,239 @@ }, { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateWithoutProjectDataInput", + "name": "GameCreateWithoutTourneyInput", "description": null, "fields": null, "inputFields": [ { - "name": "code", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "ResourceType", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "start_date", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "longtitle", + "name": "end_date", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "content", + "name": "sequence", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "contentText", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserCreateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "published", + "name": "Users", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserCreateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "Teams", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "TeamCreateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "hidemenu", + "name": "Parent", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "GameCreateOneWithoutChildsInput", "ofType": null }, "defaultValue": null }, { - "name": "searchable", + "name": "Childs", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "GameCreateManyWithoutParentInput", "ofType": null }, "defaultValue": null }, { - "name": "uri", + "name": "Results", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "GameResultCreateManyWithoutGameInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GameResultCreateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "isfolder", + "name": "date", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "rating", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "positiveVotesCount", + "name": "value", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "negativeVotesCount", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "UserCreateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "neutralVotesCount", + "name": "User", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "UserCreateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "Team", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "TeamCreateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "mockUpdate", + "name": "Game", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GameCreateOneWithoutResultsInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TeamCreateOneInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "components", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", + "kind": "INPUT_OBJECT", + "name": "TeamWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GameResultCreateWithoutGameInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "commentOldID", + "name": "date", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "class_key", + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -242567,11 +95280,11 @@ "defaultValue": null }, { - "name": "template", + "name": "value", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null @@ -242581,147 +95294,108 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutResourcesInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Parent", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutChildsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutParentInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaProject", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutPrismaResourcesInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Topic", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutCommentsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Comments", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutTopicInput", + "name": "UserCreateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "User", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutResourceInput", + "name": "UserCreateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "Team", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutResourceInput", + "name": "TeamCreateOneInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GameResultUpdateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Blog", + "name": "date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallenge", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeUpdateOneWithoutTopicInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Galleries", + "name": "value", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "GalleryUpdateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "EthAccount", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutResourcesInput", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "Image", + "name": "User", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FileUpdateOneWithoutImageResourceInput", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "Service", + "name": "Team", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ServiceUpdateOneWithoutResourceInput", + "name": "TeamUpdateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "Team", + "name": "Game", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutResourceInput", + "name": "GameUpdateOneWithoutResultsInput", "ofType": null }, "defaultValue": null @@ -242733,112 +95407,121 @@ }, { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateWithoutServiceDataInput", + "name": "TeamUpdateOneInput", "description": null, "fields": null, "inputFields": [ { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "ResourceType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "longtitle", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "content", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", + "kind": "INPUT_OBJECT", + "name": "TeamWhereUniqueInput", "ofType": null }, "defaultValue": null }, { - "name": "contentText", + "name": "disconnect", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GameUpdateOneWithoutResultsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "published", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "GameWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GameResultUpdateManyWithoutGameInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "deleted", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GameResultWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "hidemenu", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GameResultWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GameResultUpdateWithoutGameDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "searchable", + "name": "date", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "uri", + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -242848,107 +95531,152 @@ "defaultValue": null }, { - "name": "isfolder", + "name": "value", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "rating", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "positiveVotesCount", + "name": "User", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "negativeVotesCount", + "name": "Team", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "TeamUpdateOneInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GameResultUpdateWithWhereUniqueWithoutGameInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "neutralVotesCount", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GameResultWhereUniqueInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "oldID", + "name": "data", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GameResultUpdateWithoutGameDataInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GameResultUpsertWithWhereUniqueWithoutGameInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "mockUpdate", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GameResultWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GameUpdateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "components", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "commentOldID", + "name": "start_date", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "class_key", + "name": "end_date", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "template", + "name": "sequence", "description": null, "type": { "kind": "SCALAR", @@ -242962,147 +95690,223 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutResourcesInput", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "Parent", + "name": "Tourney", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutChildsInput", + "name": "TourneyUpdateOneWithoutGamesInput", "ofType": null }, "defaultValue": null }, { - "name": "Childs", + "name": "Users", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutParentInput", + "name": "UserUpdateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProject", + "name": "Teams", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutPrismaResourcesInput", + "name": "TeamUpdateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "Topic", + "name": "Parent", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutCommentsInput", + "name": "GameUpdateOneWithoutChildsInput", "ofType": null }, "defaultValue": null }, { - "name": "Comments", + "name": "Childs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutTopicInput", + "name": "GameUpdateManyWithoutParentInput", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "Results", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutResourceInput", + "name": "GameResultUpdateManyWithoutGameInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TourneyUpdateOneWithoutGamesInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Tags", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutResourceInput", + "name": "TourneyWhereUniqueInput", "ofType": null }, "defaultValue": null }, { - "name": "Blog", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserUpdateManyInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "CodeChallenge", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeUpdateOneWithoutTopicInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Galleries", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "GalleryUpdateManyWithoutResourceInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TeamUpdateManyInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "EthAccount", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutResourcesInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TeamWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Image", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateOneWithoutImageResourceInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TeamWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GameUpdateOneWithoutChildsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Team", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutResourceInput", + "name": "GameWhereUniqueInput", "ofType": null }, "defaultValue": null }, { - "name": "Project", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutResourceInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null @@ -243114,62 +95918,106 @@ }, { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateWithoutTagsDataInput", + "name": "GameUpdateManyWithoutParentInput", "description": null, "fields": null, "inputFields": [ { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", + "name": "connect", "description": null, "type": { - "kind": "ENUM", - "name": "ResourceType", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GameWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "name", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GameWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GameUpdateManyWithoutTourneyInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "longtitle", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GameWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "content", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GameWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GameUpdateWithoutChildsDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "contentText", + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -243179,117 +96027,118 @@ "defaultValue": null }, { - "name": "published", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "deleted", + "name": "start_date", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "hidemenu", + "name": "end_date", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "searchable", + "name": "sequence", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "uri", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "isfolder", + "name": "Tourney", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "TourneyUpdateOneWithoutGamesInput", "ofType": null }, "defaultValue": null }, { - "name": "rating", + "name": "Users", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "UserUpdateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "positiveVotesCount", + "name": "Teams", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "TeamUpdateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "negativeVotesCount", + "name": "Parent", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "GameUpdateOneWithoutChildsInput", "ofType": null }, "defaultValue": null }, { - "name": "neutralVotesCount", + "name": "Results", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "GameResultUpdateManyWithoutGameInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GameUpdateWithoutParentDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "oldID", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "mockUpdate", + "name": "start_date", "description": null, "type": { "kind": "SCALAR", @@ -243299,17 +96148,17 @@ "defaultValue": null }, { - "name": "components", + "name": "end_date", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "commentOldID", + "name": "sequence", "description": null, "type": { "kind": "SCALAR", @@ -243319,171 +96168,172 @@ "defaultValue": null }, { - "name": "class_key", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "template", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "Tourney", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutResourcesInput", + "name": "TourneyUpdateOneWithoutGamesInput", "ofType": null }, "defaultValue": null }, { - "name": "Parent", + "name": "Users", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutChildsInput", + "name": "UserUpdateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "Childs", + "name": "Teams", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutParentInput", + "name": "TeamUpdateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProject", + "name": "Childs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutPrismaResourcesInput", + "name": "GameUpdateManyWithoutParentInput", "ofType": null }, "defaultValue": null }, { - "name": "Topic", + "name": "Results", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutCommentsInput", + "name": "GameResultUpdateManyWithoutGameInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GameUpdateWithoutResultsDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Comments", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutTopicInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "start_date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Blog", + "name": "end_date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallenge", + "name": "sequence", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeUpdateOneWithoutTopicInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Galleries", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "GalleryUpdateManyWithoutResourceInput", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccount", + "name": "Tourney", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutResourcesInput", + "name": "TourneyUpdateOneWithoutGamesInput", "ofType": null }, "defaultValue": null }, { - "name": "Image", + "name": "Users", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FileUpdateOneWithoutImageResourceInput", + "name": "UserUpdateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "Service", + "name": "Teams", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ServiceUpdateOneWithoutResourceInput", + "name": "TeamUpdateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "Team", + "name": "Parent", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutResourceInput", + "name": "GameUpdateOneWithoutChildsInput", "ofType": null }, "defaultValue": null }, { - "name": "Project", + "name": "Childs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutResourceInput", + "name": "GameUpdateManyWithoutParentInput", "ofType": null }, "defaultValue": null @@ -243495,563 +96345,792 @@ }, { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateWithoutTeamDataInput", + "name": "GameUpdateWithoutTourneyDataInput", "description": null, "fields": null, "inputFields": [ { - "name": "code", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "type", + "name": "start_date", "description": null, "type": { - "kind": "ENUM", - "name": "ResourceType", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "end_date", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "longtitle", + "name": "sequence", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "content", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "contentText", + "name": "Users", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserUpdateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "published", + "name": "Teams", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "TeamUpdateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "Parent", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "GameUpdateOneWithoutChildsInput", "ofType": null }, "defaultValue": null }, { - "name": "hidemenu", + "name": "Childs", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "GameUpdateManyWithoutParentInput", "ofType": null }, "defaultValue": null }, { - "name": "searchable", + "name": "Results", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "GameResultUpdateManyWithoutGameInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GameUpdateWithWhereUniqueWithoutParentInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "uri", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GameWhereUniqueInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "isfolder", + "name": "data", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GameUpdateWithoutParentDataInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GameUpdateWithWhereUniqueWithoutTourneyInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "rating", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GameWhereUniqueInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "positiveVotesCount", + "name": "data", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GameUpdateWithoutTourneyDataInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GameUpsertWithWhereUniqueWithoutParentInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "negativeVotesCount", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GameWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GameUpsertWithWhereUniqueWithoutTourneyInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "neutralVotesCount", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GameWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LetsadsSmsMessageStatus", + "description": null, + "fields": [ { - "name": "oldID", + "name": "id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "mockUpdate", + "name": "createdAt", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "components", + "name": "updatedAt", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "commentOldID", + "name": "name", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "LetsadsSmsMessageStatusEnum", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "class_key", + "name": "description", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "template", + "name": "errorCode", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "LetsadsSmsMessageStatusErrorCodeEnum", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "SmsMessage", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SmsMessageWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutResourcesInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SmsMessage", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Parent", + "name": "Items", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LetsadsSmsMessageStatusItemWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "LetsadsSmsMessageStatusItemOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutChildsInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LetsadsSmsMessageStatusItem", + "ofType": null + } + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ { - "name": "Childs", + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "LetsadsSmsMessageStatusEnum", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "Complete", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutParentInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "PrismaProject", + "name": "Error", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutPrismaResourcesInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "LetsadsSmsMessageStatusErrorCodeEnum", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "NO_DATA", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Topic", + "name": "WRONG_DATA_FORMAT", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutCommentsInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Comments", + "name": "REQUEST_FORMAT", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutTopicInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Votes", + "name": "AUTH_DATA", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutResourceInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Tags", + "name": "API_DISABLED", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutResourceInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Blog", + "name": "USER_NOT_MODERATED", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CodeChallenge", + "name": "INCORRECT_FROM", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeUpdateOneWithoutTopicInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Galleries", + "name": "INVALID_FROM", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GalleryUpdateManyWithoutResourceInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "EthAccount", + "name": "MESSAGE_TOO_LONG", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutResourcesInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Image", + "name": "NO_MESSAGE", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateOneWithoutImageResourceInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Service", + "name": "MAX_MESSAGES_COUNT", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceUpdateOneWithoutResourceInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Project", + "name": "NOT_ENOUGH_MONEY", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutResourceInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "UNKNOWN_ERROR", + "description": null, + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateWithoutTopicDataInput", + "name": "SmsMessageWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "code", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SmsMessageWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "type", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "ENUM", - "name": "ResourceType", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SmsMessageWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "name", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SmsMessageWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "longtitle", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "content", - "description": null, + "name": "id_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "contentText", - "description": null, + "name": "id_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "published", - "description": null, + "name": "id_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "deleted", - "description": null, + "name": "id_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "hidemenu", - "description": null, + "name": "id_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "searchable", - "description": null, + "name": "id_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "uri", - "description": null, + "name": "id_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "isfolder", - "description": null, + "name": "id_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "rating", - "description": null, + "name": "id_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "Float", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "positiveVotesCount", - "description": null, + "name": "id_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "negativeVotesCount", - "description": null, + "name": "id_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "neutralVotesCount", - "description": null, + "name": "id_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "oldID", - "description": null, + "name": "id_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "mockUpdate", + "name": "createdAt", "description": null, "type": { "kind": "SCALAR", @@ -244061,229 +97140,246 @@ "defaultValue": null }, { - "name": "components", - "description": null, + "name": "createdAt_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "commentOldID", - "description": null, + "name": "createdAt_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "class_key", - "description": null, + "name": "createdAt_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "template", - "description": null, + "name": "createdAt_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutResourcesInput", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Parent", - "description": null, + "name": "createdAt_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutChildsInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Childs", - "description": null, + "name": "createdAt_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutParentInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProject", - "description": null, + "name": "createdAt_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutPrismaResourcesInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Comments", + "name": "updatedAt", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutTopicInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Votes", - "description": null, + "name": "updatedAt_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Tags", - "description": null, + "name": "updatedAt_in", + "description": "All values that are contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutResourceInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Blog", - "description": null, + "name": "updatedAt_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "CodeChallenge", - "description": null, + "name": "updatedAt_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeUpdateOneWithoutTopicInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Galleries", - "description": null, + "name": "updatedAt_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "GalleryUpdateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "EthAccount", - "description": null, + "name": "updatedAt_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutResourcesInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Image", - "description": null, + "name": "updatedAt_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateOneWithoutImageResourceInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Service", + "name": "from", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceUpdateOneWithoutResourceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Team", - "description": null, + "name": "from_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutResourceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Project", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutResourceInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateWithoutVotesDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "code", - "description": null, + "name": "from_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "type", - "description": null, + "name": "from_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "ENUM", - "name": "ResourceType", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "name", - "description": null, + "name": "from_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -244292,8 +97388,8 @@ "defaultValue": null }, { - "name": "longtitle", - "description": null, + "name": "from_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -244302,18 +97398,18 @@ "defaultValue": null }, { - "name": "content", - "description": null, + "name": "from_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "contentText", - "description": null, + "name": "from_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -244322,48 +97418,48 @@ "defaultValue": null }, { - "name": "published", - "description": null, + "name": "from_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "deleted", - "description": null, + "name": "from_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "hidemenu", - "description": null, + "name": "from_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "searchable", - "description": null, + "name": "from_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "uri", - "description": null, + "name": "from_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -244372,98 +97468,114 @@ "defaultValue": null }, { - "name": "isfolder", - "description": null, + "name": "from_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "rating", + "name": "text", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "positiveVotesCount", - "description": null, + "name": "text_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "negativeVotesCount", - "description": null, + "name": "text_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "neutralVotesCount", - "description": null, + "name": "text_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "oldID", - "description": null, + "name": "text_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "mockUpdate", - "description": null, + "name": "text_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "components", - "description": null, + "name": "text_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "commentOldID", - "description": null, + "name": "text_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "class_key", - "description": null, + "name": "text_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -244472,161 +97584,101 @@ "defaultValue": null }, { - "name": "template", - "description": null, + "name": "text_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutResourcesInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Parent", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutChildsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutParentInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PrismaProject", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutPrismaResourcesInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Topic", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneWithoutCommentsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Comments", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutTopicInput", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tags", - "description": null, + "name": "text_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Blog", - "description": null, + "name": "text_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallenge", - "description": null, + "name": "text_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeUpdateOneWithoutTopicInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Galleries", - "description": null, + "name": "text_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "GalleryUpdateManyWithoutResourceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthAccount", + "name": "deletOnSend", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutResourcesInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Image", - "description": null, + "name": "deletOnSend_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateOneWithoutImageResourceInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Service", + "name": "Provider", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ServiceUpdateOneWithoutResourceInput", + "name": "SmsProviderWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "Team", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutResourceInput", + "name": "UserWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "Project", + "name": "Status", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutResourceInput", + "name": "LetsadsSmsMessageStatusWhereInput", "ofType": null }, "defaultValue": null @@ -244638,330 +97690,64 @@ }, { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateWithWhereUniqueWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateWithoutCreatedByDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateWithWhereUniqueWithoutEthAccountInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateWithoutEthAccountDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateWithWhereUniqueWithoutParentInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateWithoutParentDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateWithWhereUniqueWithoutPrismaProjectInput", + "name": "SmsProviderWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "where", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SmsProviderWhereInput", + "ofType": null + } } }, "defaultValue": null }, { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateWithoutPrismaProjectDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateWithWhereUniqueWithoutTopicInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SmsProviderWhereInput", + "ofType": null + } } }, "defaultValue": null }, { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateWithoutTopicDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceUpsertWithWhereUniqueWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceUpsertWithWhereUniqueWithoutEthAccountInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceUpsertWithWhereUniqueWithoutParentInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceUpsertWithWhereUniqueWithoutPrismaProjectInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceUpsertWithWhereUniqueWithoutTopicInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SmsProviderWhereInput", + "ofType": null + } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RouteCreateWithoutChildsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { "name": "id", "description": null, @@ -244973,87 +97759,74 @@ "defaultValue": null }, { - "name": "name", - "description": null, + "name": "id_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "path", - "description": null, + "name": "id_in", + "description": "All values that are contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } } }, "defaultValue": null }, { - "name": "exact", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "component", - "description": null, + "name": "id_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } } }, "defaultValue": null }, { - "name": "Parent", - "description": null, + "name": "id_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "RouteCreateOneWithoutChildsInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "id_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RouteCreateWithoutParentInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "id_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", "name": "ID", @@ -245062,96 +97835,77 @@ "defaultValue": null }, { - "name": "name", - "description": null, + "name": "id_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "path", - "description": null, + "name": "id_contains", + "description": "All values containing the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "exact", - "description": null, + "name": "id_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "component", - "description": null, + "name": "id_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "Childs", - "description": null, + "name": "id_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "RouteCreateManyWithoutParentInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "id_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RouteUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", - "description": null, + "name": "id_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "path", + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -245161,49 +97915,54 @@ "defaultValue": null }, { - "name": "exact", - "description": null, + "name": "name_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "component", - "description": null, + "name": "name_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RouteUpdateWithoutChildsDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", - "description": null, + "name": "name_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "path", - "description": null, + "name": "name_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -245212,18 +97971,18 @@ "defaultValue": null }, { - "name": "exact", - "description": null, + "name": "name_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "component", - "description": null, + "name": "name_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -245232,39 +97991,28 @@ "defaultValue": null }, { - "name": "Parent", - "description": null, + "name": "name_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "RouteUpdateOneWithoutChildsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "name_contains", + "description": "All values containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RouteUpdateWithoutParentDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", - "description": null, + "name": "name_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -245273,8 +98021,8 @@ "defaultValue": null }, { - "name": "path", - "description": null, + "name": "name_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -245283,18 +98031,18 @@ "defaultValue": null }, { - "name": "exact", - "description": null, + "name": "name_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "component", - "description": null, + "name": "name_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -245303,11 +98051,11 @@ "defaultValue": null }, { - "name": "Childs", - "description": null, + "name": "name_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "RouteUpdateManyWithoutParentInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null @@ -245317,7 +98065,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "name": "UserWhereInput", "ofType": null }, "defaultValue": null @@ -245329,183 +98077,143 @@ }, { "kind": "INPUT_OBJECT", - "name": "RouteUpdateWithWhereUniqueWithoutParentInput", + "name": "LetsadsSmsMessageStatusWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "where", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "RouteWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LetsadsSmsMessageStatusWhereInput", + "ofType": null + } } }, "defaultValue": null }, { - "name": "data", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "RouteUpdateWithoutParentDataInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LetsadsSmsMessageStatusWhereInput", + "ofType": null + } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RouteUpsertWithWhereUniqueWithoutParentInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "RouteWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LetsadsSmsMessageStatusWhereInput", + "ofType": null + } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ServiceCategoryConnection", - "description": "A connection to a list of items.", - "fields": [ + }, { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], + "name": "id", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "edges", - "description": "A list of edges.", - "args": [], + "name": "id_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ServiceCategoryEdge", + "kind": "SCALAR", + "name": "ID", "ofType": null } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "aggregate", - "description": null, - "args": [], + "name": "id_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "AggregateServiceCategory", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ServiceCategoryEdge", - "description": "An edge in a connection.", - "fields": [ + "defaultValue": null + }, { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], + "name": "id_lt", + "description": "All values less than the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ServiceCategory", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], + "name": "id_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryCreateInput", - "description": null, - "fields": null, - "inputFields": [ + "defaultValue": null + }, { - "name": "id", - "description": null, + "name": "id_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", "name": "ID", @@ -245514,32 +98222,28 @@ "defaultValue": null }, { - "name": "name", - "description": null, + "name": "id_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "id_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "code", - "description": null, + "name": "id_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", "name": "ID", @@ -245548,59 +98252,68 @@ "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "id_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Services", - "description": null, + "name": "id_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCreateManyWithoutCategoryInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Parent", - "description": null, + "name": "id_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryCreateOneWithoutChildsInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Childs", - "description": null, + "name": "id_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryCreateManyWithoutParentInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ServiceCreateManyWithoutCategoryInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "createdAt", "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -245608,49 +98321,95 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereUniqueInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryCreateOneWithoutChildsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "createdAt_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryWhereUniqueInput", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "createdAt_lt", + "description": "All values less than the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryCreateManyWithoutParentInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "createdAt_lte", + "description": "All values less than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_gt", + "description": "All values greater than the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_gte", + "description": "All values greater than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -245658,137 +98417,187 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryWhereUniqueInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryCreateWithoutChildsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "updatedAt_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "updatedAt_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "name", - "description": null, + "name": "updatedAt_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "updatedAt_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "code", - "description": null, + "name": "updatedAt_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "kind": "ENUM", + "name": "LetsadsSmsMessageStatusEnum", "ofType": null }, "defaultValue": null }, { - "name": "Services", - "description": null, + "name": "name_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCreateManyWithoutCategoryInput", + "kind": "ENUM", + "name": "LetsadsSmsMessageStatusEnum", "ofType": null }, "defaultValue": null }, { - "name": "Parent", + "name": "name_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "LetsadsSmsMessageStatusEnum", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "name_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "LetsadsSmsMessageStatusEnum", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "description", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryCreateOneWithoutChildsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryCreateWithoutParentInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "description_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "name", - "description": null, + "name": "description_in", + "description": "All values that are contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "description_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "description_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -245797,83 +98606,68 @@ "defaultValue": null }, { - "name": "code", - "description": null, + "name": "description_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "description_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Services", - "description": null, + "name": "description_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCreateManyWithoutCategoryInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Childs", - "description": null, + "name": "description_contains", + "description": "All values containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryCreateManyWithoutParentInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryCreateWithoutServicesInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "description_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "name", - "description": null, + "name": "description_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "description_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -245882,152 +98676,129 @@ "defaultValue": null }, { - "name": "code", - "description": null, + "name": "description_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "description_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Parent", + "name": "errorCode", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryCreateOneWithoutChildsInput", + "kind": "ENUM", + "name": "LetsadsSmsMessageStatusErrorCodeEnum", "ofType": null }, "defaultValue": null }, { - "name": "Childs", - "description": null, + "name": "errorCode_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryCreateManyWithoutParentInput", + "kind": "ENUM", + "name": "LetsadsSmsMessageStatusErrorCodeEnum", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ServiceCategoryPreviousValues", - "description": null, - "fields": [ + }, { - "name": "id", - "description": null, - "args": [], + "name": "errorCode_in", + "description": "All values that are contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "LetsadsSmsMessageStatusErrorCodeEnum", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "createdAt", - "description": null, - "args": [], + "name": "errorCode_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "LetsadsSmsMessageStatusErrorCodeEnum", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedAt", + "name": "SmsMessage", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "SmsMessageWhereInput", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "name", + "name": "Items_every", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "LetsadsSmsMessageStatusItemWhereInput", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "description", + "name": "Items_some", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "LetsadsSmsMessageStatusItemWhereInput", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "code", + "name": "Items_none", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "LetsadsSmsMessageStatusItemWhereInput", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "ServiceCategoryScalarWhereInput", + "name": "LetsadsSmsMessageStatusItemWhereInput", "description": null, "fields": null, "inputFields": [ @@ -246042,7 +98813,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ServiceCategoryScalarWhereInput", + "name": "LetsadsSmsMessageStatusItemWhereInput", "ofType": null } } @@ -246060,7 +98831,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ServiceCategoryScalarWhereInput", + "name": "LetsadsSmsMessageStatusItemWhereInput", "ofType": null } } @@ -246078,7 +98849,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ServiceCategoryScalarWhereInput", + "name": "LetsadsSmsMessageStatusItemWhereInput", "ofType": null } } @@ -246434,27 +99205,27 @@ "defaultValue": null }, { - "name": "name", + "name": "sms_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "name_not", + "name": "sms_id_not", "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "name_in", + "name": "sms_id_in", "description": "All values that are contained in given list.", "type": { "kind": "LIST", @@ -246464,7 +99235,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } } @@ -246472,7 +99243,7 @@ "defaultValue": null }, { - "name": "name_not_in", + "name": "sms_id_not_in", "description": "All values that are not contained in given list.", "type": { "kind": "LIST", @@ -246482,7 +99253,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } } @@ -246490,224 +99261,605 @@ "defaultValue": null }, { - "name": "name_lt", + "name": "sms_id_lt", "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "name_lte", + "name": "sms_id_lte", "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "name_gt", + "name": "sms_id_gt", "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "name_gte", + "name": "sms_id_gte", "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SmsMessage", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_contains", - "description": "All values containing the given string.", + "name": "createdAt", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_not_contains", - "description": "All values not containing the given string.", + "name": "updatedAt", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_starts_with", - "description": "All values starting with the given string.", + "name": "from", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", + "name": "text", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_ends_with", - "description": "All values ending with the given string.", + "name": "recipients", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", + "name": "Provider", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SmsProviderWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SmsProvider", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description", + "name": "deletOnSend", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description_not", - "description": "All values that are not equal to given value.", + "name": "CreatedBy", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "User", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description_in", - "description": "All values that are contained in given list.", + "name": "Status", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LetsadsSmsMessageStatusWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "LIST", + "kind": "OBJECT", + "name": "LetsadsSmsMessageStatus", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SmsProvider", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description_not_in", - "description": "All values that are not contained in given list.", + "name": "name", + "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description_lt", - "description": "All values less than the given value.", + "name": "credentials", + "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Json", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description_lte", - "description": "All values less than or equal the given value.", + "name": "CreatedBy", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "User", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "LetsadsSmsMessageStatusItemOrderByInput", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description_gt", - "description": "All values greater than the given value.", + "name": "id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sms_id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sms_id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LetsadsSmsMessageStatusItem", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description_gte", - "description": "All values greater than or equal the given value.", + "name": "createdAt", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description_contains", - "description": "All values containing the given string.", + "name": "updatedAt", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description_not_contains", - "description": "All values not containing the given string.", + "name": "sms_id", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LetsadsSmsMessageStatusConnection", + "description": "A connection to a list of items.", + "fields": [ + { + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "edges", + "description": "A list of edges.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LetsadsSmsMessageStatusEdge", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "aggregate", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AggregateLetsadsSmsMessageStatus", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LetsadsSmsMessageStatusEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "node", + "description": "The item at the end of the edge.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LetsadsSmsMessageStatus", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "LetsadsSmsMessageStatusCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "ENUM", + "name": "LetsadsSmsMessageStatusEnum", "ofType": null }, "defaultValue": null }, { - "name": "description_starts_with", - "description": "All values starting with the given string.", + "name": "description", + "description": null, "type": { "kind": "SCALAR", "name": "String", @@ -246716,58 +99868,95 @@ "defaultValue": null }, { - "name": "description_not_starts_with", - "description": "All values not starting with the given string.", + "name": "errorCode", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "LetsadsSmsMessageStatusErrorCodeEnum", "ofType": null }, "defaultValue": null }, { - "name": "description_ends_with", - "description": "All values ending with the given string.", + "name": "SmsMessage", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SmsMessageCreateOneWithoutStatusInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "description_not_ends_with", - "description": "All values not ending with the given string.", + "name": "Items", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "LetsadsSmsMessageStatusItemCreateManyInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SmsMessageCreateOneWithoutStatusInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "code", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "SmsMessageWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SmsMessageWhereUniqueInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "code_not", - "description": "All values that are not equal to given value.", + "name": "id", + "description": null, "type": { "kind": "SCALAR", "name": "ID", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "LetsadsSmsMessageStatusItemCreateManyInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "code_in", - "description": "All values that are contained in given list.", + "name": "connect", + "description": null, "type": { "kind": "LIST", "name": null, @@ -246775,140 +99964,352 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "LetsadsSmsMessageStatusItemWhereUniqueInput", "ofType": null } } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "LetsadsSmsMessageStatusItemWhereUniqueInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "code_not_in", - "description": "All values that are not contained in given list.", + "name": "id", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "code_lt", - "description": "All values less than the given value.", + "name": "sms_id", + "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "LetsadsSmsMessageStatusCreateOneWithoutSmsMessageInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "code_lte", - "description": "All values less than or equal the given value.", + "name": "connect", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "LetsadsSmsMessageStatusWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "LetsadsSmsMessageStatusWhereUniqueInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "code_gt", - "description": "All values greater than the given value.", + "name": "id", + "description": null, "type": { "kind": "SCALAR", "name": "ID", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "LetsadsSmsMessageStatusCreateWithoutSmsMessageInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "code_gte", - "description": "All values greater than or equal the given value.", + "name": "name", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "ENUM", + "name": "LetsadsSmsMessageStatusEnum", "ofType": null }, "defaultValue": null }, { - "name": "code_contains", - "description": "All values containing the given string.", + "name": "description", + "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "code_not_contains", - "description": "All values not containing the given string.", + "name": "errorCode", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "ENUM", + "name": "LetsadsSmsMessageStatusErrorCodeEnum", "ofType": null }, "defaultValue": null }, { - "name": "code_starts_with", - "description": "All values starting with the given string.", + "name": "Items", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "LetsadsSmsMessageStatusItemCreateManyInput", "ofType": null }, "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LetsadsSmsMessageStatusItemConnection", + "description": "A connection to a list of items.", + "fields": [ + { + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "code_not_starts_with", - "description": "All values not starting with the given string.", + "name": "edges", + "description": "A list of edges.", + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LetsadsSmsMessageStatusItemEdge", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "aggregate", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AggregateLetsadsSmsMessageStatusItem", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LetsadsSmsMessageStatusItemEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "node", + "description": "The item at the end of the edge.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LetsadsSmsMessageStatusItem", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "LetsadsSmsMessageStatusItemCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "sms_id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LetsadsSmsMessageStatusItemPreviousValues", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "code_ends_with", - "description": "All values ending with the given string.", + "name": "updatedAt", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "code_not_ends_with", - "description": "All values not ending with the given string.", + "name": "sms_id", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "ServiceCategorySubscriptionPayload", + "name": "LetsadsSmsMessageStatusItemSubscriptionPayload", "description": null, "fields": [ { @@ -246933,7 +100334,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "ServiceCategory", + "name": "LetsadsSmsMessageStatusItem", "ofType": null }, "isDeprecated": false, @@ -246965,7 +100366,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "ServiceCategoryPreviousValues", + "name": "LetsadsSmsMessageStatusItemPreviousValues", "ofType": null }, "isDeprecated": false, @@ -246979,7 +100380,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "ServiceCategorySubscriptionWhereInput", + "name": "LetsadsSmsMessageStatusItemSubscriptionWhereInput", "description": null, "fields": null, "inputFields": [ @@ -246994,7 +100395,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ServiceCategorySubscriptionWhereInput", + "name": "LetsadsSmsMessageStatusItemSubscriptionWhereInput", "ofType": null } } @@ -247012,7 +100413,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ServiceCategorySubscriptionWhereInput", + "name": "LetsadsSmsMessageStatusItemSubscriptionWhereInput", "ofType": null } } @@ -247030,7 +100431,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ServiceCategorySubscriptionWhereInput", + "name": "LetsadsSmsMessageStatusItemSubscriptionWhereInput", "ofType": null } } @@ -247106,7 +100507,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ServiceCategoryWhereInput", + "name": "LetsadsSmsMessageStatusItemWhereInput", "ofType": null }, "defaultValue": null @@ -247118,76 +100519,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "ServiceCategoryUpdateInput", + "name": "LetsadsSmsMessageStatusItemUpdateDataInput", "description": null, "fields": null, "inputFields": [ { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", + "name": "sms_id", "description": null, "type": { "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Services", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceUpdateManyWithoutCategoryInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Parent", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryUpdateOneWithoutChildsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryUpdateManyWithoutParentInput", + "name": "Int", "ofType": null }, "defaultValue": null @@ -247199,127 +100540,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "ServiceUpdateManyWithoutCategoryInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryUpdateOneWithoutChildsInput", + "name": "LetsadsSmsMessageStatusItemUpdateInput", "description": null, "fields": null, "inputFields": [ { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "disconnect", + "name": "sms_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null @@ -247331,7 +100561,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "ServiceCategoryUpdateManyWithoutParentInput", + "name": "LetsadsSmsMessageStatusItemUpdateManyInput", "description": null, "fields": null, "inputFields": [ @@ -247346,25 +100576,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ServiceCategoryWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryWhereUniqueInput", + "name": "LetsadsSmsMessageStatusItemWhereUniqueInput", "ofType": null } } @@ -247382,43 +100594,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ServiceCategoryWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryUpdateManyWithWhereNestedInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryScalarWhereInput", + "name": "LetsadsSmsMessageStatusItemWhereUniqueInput", "ofType": null } } @@ -247432,7 +100608,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "ServiceCategoryUpdateManyWithWhereNestedInput", + "name": "LetsadsSmsMessageStatusItemUpdateWithWhereUniqueNestedInput", "description": null, "fields": null, "inputFields": [ @@ -247444,7 +100620,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ServiceCategoryScalarWhereInput", + "name": "LetsadsSmsMessageStatusItemWhereUniqueInput", "ofType": null } }, @@ -247458,7 +100634,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ServiceCategoryUpdateManyDataInput", + "name": "LetsadsSmsMessageStatusItemUpdateDataInput", "ofType": null } }, @@ -247471,37 +100647,21 @@ }, { "kind": "INPUT_OBJECT", - "name": "ServiceCategoryUpdateManyDataInput", + "name": "LetsadsSmsMessageStatusItemUpsertWithWhereUniqueNestedInput", "description": null, "fields": null, "inputFields": [ { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LetsadsSmsMessageStatusItemWhereUniqueInput", + "ofType": null + } }, "defaultValue": null } @@ -247511,817 +100671,387 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryUpdateManyMutationInput", + "kind": "ENUM", + "name": "LetsadsSmsMessageStatusOrderByInput", "description": null, "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], + "inputFields": null, "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryUpdateWithoutChildsDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "ofType": null - }, - "defaultValue": null - }, + "enumValues": [ { - "name": "Services", + "name": "id_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceUpdateManyWithoutCategoryInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Parent", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryUpdateOneWithoutChildsInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryUpdateWithoutParentDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", + "name": "id_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description", + "name": "createdAt_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "code", + "name": "createdAt_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "updatedAt_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Services", + "name": "updatedAt_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceUpdateManyWithoutCategoryInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Childs", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryUpdateManyWithoutParentInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryUpdateWithoutServicesDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", + "name": "name_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description", + "name": "name_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "code", + "name": "description_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "description_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Parent", + "name": "errorCode_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryUpdateOneWithoutChildsInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Childs", + "name": "errorCode_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryUpdateManyWithoutParentInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryUpdateWithWhereUniqueWithoutParentInput", + "kind": "OBJECT", + "name": "LetsadsSmsMessageStatusPreviousValues", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "where", + "name": "id", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryWhereUniqueInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", + "name": "createdAt", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryUpdateWithoutParentDataInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryUpsertWithWhereUniqueWithoutParentInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "where", + "name": "updatedAt", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryWhereUniqueInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ServiceCreateWithoutCategoryInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "name", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "LetsadsSmsMessageStatusEnum", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "description", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Projects", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutServicesInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Parent", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCreateOneWithoutChildsInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Childs", + "name": "errorCode", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCreateManyWithoutParentInput", + "kind": "ENUM", + "name": "LetsadsSmsMessageStatusErrorCodeEnum", "ofType": null }, - "defaultValue": null - }, - { - "name": "Resource", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutServiceInput", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "ServiceCreateWithoutChildsInput", + "kind": "OBJECT", + "name": "LetsadsSmsMessageStatusSubscriptionPayload", "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Projects", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutServicesInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Parent", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCreateOneWithoutChildsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Category", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryCreateOneWithoutServicesInput", - "ofType": null - }, - "defaultValue": null - }, + "fields": [ { - "name": "Resource", + "name": "mutation", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutServiceInput", + "kind": "ENUM", + "name": "MutationType", "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ServiceCreateWithoutParentInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Projects", + "name": "node", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutServicesInput", + "kind": "OBJECT", + "name": "LetsadsSmsMessageStatus", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Childs", + "name": "updatedFields", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCreateManyWithoutParentInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Category", + "name": "previousValues", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryCreateOneWithoutServicesInput", + "kind": "OBJECT", + "name": "LetsadsSmsMessageStatusPreviousValues", "ofType": null }, - "defaultValue": null - }, - { - "name": "Resource", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutServiceInput", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "ServiceCreateWithoutProjectsInput", + "name": "LetsadsSmsMessageStatusSubscriptionWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LetsadsSmsMessageStatusSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LetsadsSmsMessageStatusSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "code", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LetsadsSmsMessageStatusSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "rank", - "description": null, + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "oldID", - "description": null, + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Parent", - "description": null, + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCreateOneWithoutChildsInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Childs", - "description": null, + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCreateManyWithoutParentInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Category", + "name": "node", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ServiceCategoryCreateOneWithoutServicesInput", + "name": "LetsadsSmsMessageStatusWhereInput", "ofType": null }, "defaultValue": null - }, - { - "name": "Resource", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutServiceInput", - "ofType": null - } - }, - "defaultValue": null } ], "interfaces": null, @@ -248330,26 +101060,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "ServiceCreateWithoutResourceInput", + "name": "LetsadsSmsMessageStatusUpdateInput", "description": null, "fields": null, "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, { "name": "name", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "LetsadsSmsMessageStatusEnum", "ofType": null }, "defaultValue": null @@ -248365,81 +101085,83 @@ "defaultValue": null }, { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", + "name": "errorCode", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "LetsadsSmsMessageStatusErrorCodeEnum", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "SmsMessage", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "name": "SmsMessageUpdateOneWithoutStatusInput", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "Items", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutServicesInput", + "name": "LetsadsSmsMessageStatusItemUpdateManyInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SmsMessageUpdateOneWithoutStatusInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Parent", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ServiceCreateOneWithoutChildsInput", + "name": "SmsMessageWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "LetsadsSmsMessageStatusUpdateOneWithoutSmsMessageInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Childs", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ServiceCreateManyWithoutParentInput", + "name": "LetsadsSmsMessageStatusWhereUniqueInput", "ofType": null }, "defaultValue": null }, { - "name": "Category", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryCreateOneWithoutServicesInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null @@ -248451,7 +101173,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "ServiceUpdateManyMutationInput", + "name": "LetsadsSmsMessageStatusUpdateWithoutSmsMessageDataInput", "description": null, "fields": null, "inputFields": [ @@ -248459,8 +101181,8 @@ "name": "name", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "LetsadsSmsMessageStatusEnum", "ofType": null }, "defaultValue": null @@ -248476,88 +101198,196 @@ "defaultValue": null }, { - "name": "code", + "name": "errorCode", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "ENUM", + "name": "LetsadsSmsMessageStatusErrorCodeEnum", "ofType": null }, "defaultValue": null }, { - "name": "rank", + "name": "Items", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "LetsadsSmsMessageStatusItemUpdateManyInput", "ofType": null }, "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LetterConnection", + "description": "A connection to a list of items.", + "fields": [ + { + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "edges", + "description": "A list of edges.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LetterEdge", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "oldID", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AggregateLetter", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LetterEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "node", + "description": "The item at the end of the edge.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Letter", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "ServiceUpdateWithoutCategoryDataInput", + "name": "LetterCreateInput", "description": null, "fields": null, "inputFields": [ { - "name": "name", + "name": "email", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "description", + "name": "subject", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "code", + "name": "message", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "rank", + "name": "status", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "LetterStatus", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "rank", "description": null, "type": { "kind": "SCALAR", @@ -248567,51 +101397,41 @@ "defaultValue": null }, { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Projects", + "name": "deleteOnSend", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutServicesInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Parent", + "name": "replyTo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceUpdateOneWithoutChildsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Childs", + "name": "returnTo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceUpdateManyWithoutParentInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Resource", + "name": "Place", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneRequiredWithoutServiceInput", + "name": "PlaceCreateOneWithoutLettersInput", "ofType": null }, "defaultValue": null @@ -248623,106 +101443,148 @@ }, { "kind": "INPUT_OBJECT", - "name": "ServiceUpdateWithoutChildsDataInput", + "name": "LetterCreateManyWithoutPlaceInput", "description": null, "fields": null, "inputFields": [ { - "name": "name", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LetterWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "LetterWhereUniqueInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "description", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "LetterCreateWithoutPlaceInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "code", + "name": "email", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "rank", + "name": "subject", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "oldID", + "name": "message", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "kind": "ENUM", + "name": "LetterStatus", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "rank", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutServicesInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Parent", + "name": "deleteOnSend", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceUpdateOneWithoutChildsInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Category", + "name": "replyTo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryUpdateOneWithoutServicesInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Resource", + "name": "returnTo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneRequiredWithoutServiceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null @@ -248733,219 +101595,393 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "ServiceUpdateWithoutParentDataInput", + "kind": "OBJECT", + "name": "LetterPreviousValues", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "name", + "name": "id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description", + "name": "email", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "code", + "name": "subject", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "message", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "LetterStatus", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { "name": "rank", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "oldID", + "name": "deleteOnSend", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "replyTo", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Projects", + "name": "returnTo", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutServicesInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LetterSubscriptionPayload", + "description": null, + "fields": [ + { + "name": "mutation", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Childs", + "name": "node", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceUpdateManyWithoutParentInput", + "kind": "OBJECT", + "name": "Letter", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Category", + "name": "updatedFields", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryUpdateOneWithoutServicesInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Resource", + "name": "previousValues", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneRequiredWithoutServiceInput", + "kind": "OBJECT", + "name": "LetterPreviousValues", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "ServiceUpdateWithoutProjectsDataInput", + "name": "LetterSubscriptionWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "name", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LetterSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LetterSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "code", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LetterSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "rank", - "description": null, + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "oldID", - "description": null, + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Parent", - "description": null, + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceUpdateOneWithoutChildsInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Childs", + "name": "node", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ServiceUpdateManyWithoutParentInput", + "name": "LetterWhereInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "LetterUpdateManyWithoutPlaceInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Category", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryUpdateOneWithoutServicesInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LetterWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Resource", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneRequiredWithoutServiceInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LetterWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null } @@ -248956,12 +101992,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "ServiceUpdateWithoutResourceDataInput", + "name": "LetterUpdateWithoutPlaceDataInput", "description": null, "fields": null, "inputFields": [ { - "name": "name", + "name": "email", "description": null, "type": { "kind": "SCALAR", @@ -248971,7 +102007,7 @@ "defaultValue": null }, { - "name": "description", + "name": "subject", "description": null, "type": { "kind": "SCALAR", @@ -248981,27 +102017,27 @@ "defaultValue": null }, { - "name": "code", + "name": "message", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "rank", + "name": "status", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "LetterStatus", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "rank", "description": null, "type": { "kind": "SCALAR", @@ -249011,51 +102047,31 @@ "defaultValue": null }, { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Projects", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutServicesInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Parent", + "name": "deleteOnSend", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceUpdateOneWithoutChildsInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Childs", + "name": "replyTo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceUpdateManyWithoutParentInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Category", + "name": "returnTo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceCategoryUpdateOneWithoutServicesInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null @@ -249067,7 +102083,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "ServiceUpdateWithWhereUniqueWithoutCategoryInput", + "name": "LetterUpdateWithWhereUniqueWithoutPlaceInput", "description": null, "fields": null, "inputFields": [ @@ -249079,7 +102095,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ServiceWhereUniqueInput", + "name": "LetterWhereUniqueInput", "ofType": null } }, @@ -249093,7 +102109,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ServiceUpdateWithoutCategoryDataInput", + "name": "LetterUpdateWithoutPlaceDataInput", "ofType": null } }, @@ -249106,7 +102122,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "ServiceUpdateWithWhereUniqueWithoutParentInput", + "name": "LetterUpsertWithWhereUniqueWithoutPlaceInput", "description": null, "fields": null, "inputFields": [ @@ -249118,139 +102134,302 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ServiceWhereUniqueInput", + "name": "LetterWhereUniqueInput", "ofType": null } }, "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Log", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", + "name": "level", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceUpdateWithoutParentDataInput", + "kind": "ENUM", + "name": "LogLevel", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "objectType", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "message", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stack", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null } ], - "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "ServiceUpdateWithWhereUniqueWithoutProjectsInput", + "kind": "ENUM", + "name": "LogLevel", "description": null, "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "where", + "name": "Info", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Notice", "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Warning", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Error", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Fatal", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LogConnection", + "description": "A connection to a list of items.", + "fields": [ + { + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereUniqueInput", + "kind": "OBJECT", + "name": "PageInfo", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", + "name": "edges", + "description": "A list of edges.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LogEdge", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "aggregate", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceUpdateWithoutProjectsDataInput", + "kind": "OBJECT", + "name": "AggregateLog", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "ServiceUpsertWithWhereUniqueWithoutCategoryInput", - "description": null, - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "LogEdge", + "description": "An edge in a connection.", + "fields": [ { - "name": "where", - "description": null, + "name": "node", + "description": "The item at the end of the edge.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Log", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereUniqueInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "ServiceUpsertWithWhereUniqueWithoutParentInput", + "name": "LogCreateInput", "description": null, "fields": null, "inputFields": [ { - "name": "where", + "name": "level", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereUniqueInput", - "ofType": null - } + "kind": "ENUM", + "name": "LogLevel", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ServiceUpsertWithWhereUniqueWithoutProjectsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "objectType", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "message", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereUniqueInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null + }, + { + "name": "stack", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null } ], "interfaces": null, @@ -249259,7 +102438,7 @@ }, { "kind": "OBJECT", - "name": "SettingsConnection", + "name": "LogedInConnection", "description": "A connection to a list of items.", "fields": [ { @@ -249290,7 +102469,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SettingsEdge", + "name": "LogedInEdge", "ofType": null } } @@ -249307,7 +102486,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AggregateSettings", + "name": "AggregateLogedIn", "ofType": null } }, @@ -249322,7 +102501,7 @@ }, { "kind": "OBJECT", - "name": "SettingsEdge", + "name": "LogedInEdge", "description": "An edge in a connection.", "fields": [ { @@ -249334,7 +102513,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Settings", + "name": "LogedIn", "ofType": null } }, @@ -249365,7 +102544,42 @@ }, { "kind": "INPUT_OBJECT", - "name": "SettingsCreateOneWithoutUserInput", + "name": "LogedInCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "fake", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "User", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutLogedInsInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutLogedInsInput", "description": null, "fields": null, "inputFields": [ @@ -249374,7 +102588,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SettingsWhereUniqueInput", + "name": "UserWhereUniqueInput", "ofType": null }, "defaultValue": null @@ -249386,26 +102600,45 @@ }, { "kind": "INPUT_OBJECT", - "name": "SettingsCreateWithoutUserInput", + "name": "LogedInCreateManyWithoutUserInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LogedInWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "LogedInWhereUniqueInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "renderDistance", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null @@ -249416,43 +102649,29 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "SettingsOrderByInput", + "kind": "INPUT_OBJECT", + "name": "LogedInCreateWithoutUserInput", "description": null, "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "renderDistance_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, + "inputFields": [ { - "name": "renderDistance_DESC", + "name": "fake", "description": null, - "isDeprecated": false, - "deprecationReason": null + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null } ], + "interfaces": null, + "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "SettingsPreviousValues", + "name": "LogedInPreviousValues", "description": null, "fields": [ { @@ -249472,7 +102691,7 @@ "deprecationReason": null }, { - "name": "renderDistance", + "name": "createdAt", "description": null, "args": [], "type": { @@ -249480,12 +102699,24 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "fake", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -249495,7 +102726,7 @@ }, { "kind": "OBJECT", - "name": "SettingsSubscriptionPayload", + "name": "LogedInSubscriptionPayload", "description": null, "fields": [ { @@ -249520,7 +102751,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "Settings", + "name": "LogedIn", "ofType": null }, "isDeprecated": false, @@ -249552,7 +102783,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "SettingsPreviousValues", + "name": "LogedInPreviousValues", "ofType": null }, "isDeprecated": false, @@ -249566,7 +102797,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "SettingsSubscriptionWhereInput", + "name": "LogedInSubscriptionWhereInput", "description": null, "fields": null, "inputFields": [ @@ -249581,7 +102812,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SettingsSubscriptionWhereInput", + "name": "LogedInSubscriptionWhereInput", "ofType": null } } @@ -249599,7 +102830,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SettingsSubscriptionWhereInput", + "name": "LogedInSubscriptionWhereInput", "ofType": null } } @@ -249617,7 +102848,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SettingsSubscriptionWhereInput", + "name": "LogedInSubscriptionWhereInput", "ofType": null } } @@ -249693,7 +102924,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SettingsWhereInput", + "name": "LogedInWhereInput", "ofType": null }, "defaultValue": null @@ -249705,47 +102936,26 @@ }, { "kind": "INPUT_OBJECT", - "name": "SettingsUpdateManyMutationInput", + "name": "LogedInUpdateInput", "description": null, "fields": null, "inputFields": [ { - "name": "renderDistance", + "name": "fake", "description": null, "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SettingsUpdateOneWithoutUserInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsWhereUniqueInput", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "disconnect", + "name": "User", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutLogedInsInput", "ofType": null }, "defaultValue": null @@ -249757,16 +102967,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "SettingsUpdateWithoutUserDataInput", + "name": "UserUpdateOneWithoutLogedInsInput", "description": null, "fields": null, "inputFields": [ { - "name": "renderDistance", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", "ofType": null }, "defaultValue": null @@ -249777,198 +102987,131 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "SmsMessageConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "INPUT_OBJECT", + "name": "LogedInUpdateManyWithoutUserInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "edges", - "description": "A list of edges.", - "args": [], + "name": "connect", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SmsMessageEdge", + "kind": "INPUT_OBJECT", + "name": "LogedInWhereUniqueInput", "ofType": null } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "aggregate", + "name": "disconnect", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "AggregateSmsMessage", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LogedInWhereUniqueInput", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "SmsMessageEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SmsMessage", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "INPUT_OBJECT", + "name": "LogedInUpdateWithoutUserDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], + "name": "fake", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "SmsMessageCreateWithoutStatusInput", + "name": "LogedInUpdateWithWhereUniqueWithoutUserInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "from", + "name": "where", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "LogedInWhereUniqueInput", "ofType": null } }, "defaultValue": null }, { - "name": "text", + "name": "data", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "LogedInUpdateWithoutUserDataInput", "ofType": null } }, "defaultValue": null - }, - { - "name": "deletOnSend", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "recipients", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SmsMessageCreaterecipientsInput", - "ofType": null - }, - "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "LogedInUpsertWithWhereUniqueWithoutUserInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Provider", + "name": "where", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SmsProviderCreateOneInput", + "name": "LogedInWhereUniqueInput", "ofType": null } }, "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - }, - "defaultValue": null } ], "interfaces": null, @@ -249977,7 +103120,7 @@ }, { "kind": "ENUM", - "name": "SmsMessageOrderByInput", + "name": "LogOrderByInput", "description": null, "fields": null, "inputFields": null, @@ -249996,61 +103139,73 @@ "deprecationReason": null }, { - "name": "createdAt_ASC", + "name": "level_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt_DESC", + "name": "level_DESC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedAt_ASC", + "name": "objectType_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedAt_DESC", + "name": "objectType_DESC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "from_ASC", + "name": "message_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "from_DESC", + "name": "message_DESC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "text_ASC", + "name": "stack_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "text_DESC", + "name": "stack_DESC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "deletOnSend_ASC", + "name": "updatedAt_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "deletOnSend_DESC", + "name": "updatedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_DESC", "description": null, "isDeprecated": false, "deprecationReason": null @@ -250060,7 +103215,7 @@ }, { "kind": "OBJECT", - "name": "SmsMessagePreviousValues", + "name": "LogPreviousValues", "description": null, "fields": [ { @@ -250080,31 +103235,15 @@ "deprecationReason": null }, { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", + "name": "level", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "ENUM", + "name": "LogLevel", "ofType": null } }, @@ -250112,23 +103251,19 @@ "deprecationReason": null }, { - "name": "from", + "name": "objectType", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "text", + "name": "message", "description": null, "args": [], "type": { @@ -250144,36 +103279,12 @@ "deprecationReason": null }, { - "name": "recipients", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deletOnSend", + "name": "stack", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -250187,7 +103298,7 @@ }, { "kind": "OBJECT", - "name": "SmsMessageSubscriptionPayload", + "name": "LogSubscriptionPayload", "description": null, "fields": [ { @@ -250212,7 +103323,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "SmsMessage", + "name": "Log", "ofType": null }, "isDeprecated": false, @@ -250244,7 +103355,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "SmsMessagePreviousValues", + "name": "LogPreviousValues", "ofType": null }, "isDeprecated": false, @@ -250258,7 +103369,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "SmsMessageSubscriptionWhereInput", + "name": "LogSubscriptionWhereInput", "description": null, "fields": null, "inputFields": [ @@ -250273,7 +103384,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SmsMessageSubscriptionWhereInput", + "name": "LogSubscriptionWhereInput", "ofType": null } } @@ -250291,7 +103402,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SmsMessageSubscriptionWhereInput", + "name": "LogSubscriptionWhereInput", "ofType": null } } @@ -250309,7 +103420,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SmsMessageSubscriptionWhereInput", + "name": "LogSubscriptionWhereInput", "ofType": null } } @@ -250385,7 +103496,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SmsMessageWhereInput", + "name": "LogWhereInput", "ofType": null }, "defaultValue": null @@ -250397,94 +103508,105 @@ }, { "kind": "INPUT_OBJECT", - "name": "SmsMessageUpdateInput", + "name": "LogWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "from", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LogWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "text", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LogWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "deletOnSend", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LogWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "recipients", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SmsMessageUpdaterecipientsInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Provider", - "description": null, + "name": "id_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "SmsProviderUpdateOneRequiredInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "id_in", + "description": "All values that are contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Status", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LetsadsSmsMessageStatusUpdateOneWithoutSmsMessageInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SmsMessageUpdaterecipientsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "set", - "description": null, + "name": "id_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -250493,462 +103615,136 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SmsProviderUpdateOneRequiredInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SmsProviderWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SmsMessageUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "from", - "description": null, + "name": "id_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "text", - "description": null, + "name": "id_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "deletOnSend", - "description": null, + "name": "id_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "recipients", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SmsMessageUpdaterecipientsInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SmsMessageUpdateWithoutStatusDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "from", - "description": null, + "name": "id_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "text", - "description": null, + "name": "id_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "deletOnSend", - "description": null, + "name": "id_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "recipients", - "description": null, + "name": "id_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "SmsMessageUpdaterecipientsInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Provider", - "description": null, + "name": "id_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "SmsProviderUpdateOneRequiredInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "id_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SmsProviderConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SmsProviderEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateSmsProvider", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SmsProviderEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SmsProvider", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "SmsProviderOrderByInput", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "credentials_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "credentials_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SmsProviderPreviousValues", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "credentials", - "description": null, - "args": [], + "name": "id_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SmsProviderSubscriptionPayload", - "description": null, - "fields": [ + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, { - "name": "mutation", + "name": "level", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } + "kind": "ENUM", + "name": "LogLevel", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "node", - "description": null, - "args": [], + "name": "level_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "OBJECT", - "name": "SmsProvider", + "kind": "ENUM", + "name": "LogLevel", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedFields", - "description": null, - "args": [], + "name": "level_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -250956,42 +103752,55 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "LogLevel", "ofType": null } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "previousValues", + "name": "level_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "LogLevel", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "objectType", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "SmsProviderPreviousValues", + "kind": "SCALAR", + "name": "ID", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SmsProviderSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ + "defaultValue": null + }, { - "name": "AND", - "description": "Logical AND on all given filters.", + "name": "objectType_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "objectType_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -250999,8 +103808,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "SmsProviderSubscriptionWhereInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } } @@ -251008,8 +103817,8 @@ "defaultValue": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", + "name": "objectType_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -251017,8 +103826,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "SmsProviderSubscriptionWhereInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } } @@ -251026,8 +103835,128 @@ "defaultValue": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + "name": "objectType_lt", + "description": "All values less than the given value.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "objectType_lte", + "description": "All values less than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "objectType_gt", + "description": "All values greater than the given value.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "objectType_gte", + "description": "All values greater than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "objectType_contains", + "description": "All values containing the given string.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "objectType_not_contains", + "description": "All values not containing the given string.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "objectType_starts_with", + "description": "All values starting with the given string.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "objectType_not_starts_with", + "description": "All values not starting with the given string.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "objectType_ends_with", + "description": "All values ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "objectType_not_ends_with", + "description": "All values not ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "message", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "message_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "message_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -251035,8 +103964,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "SmsProviderSubscriptionWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -251044,8 +103973,8 @@ "defaultValue": null }, { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", + "name": "message_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -251053,8 +103982,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "MutationType", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -251062,8 +103991,8 @@ "defaultValue": null }, { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", + "name": "message_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -251072,8 +104001,118 @@ "defaultValue": null }, { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", + "name": "message_lte", + "description": "All values less than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "message_gt", + "description": "All values greater than the given value.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "message_gte", + "description": "All values greater than or equal the given value.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "message_contains", + "description": "All values containing the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "message_not_contains", + "description": "All values not containing the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "message_starts_with", + "description": "All values starting with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "message_not_starts_with", + "description": "All values not starting with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "message_ends_with", + "description": "All values ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "message_not_ends_with", + "description": "All values not ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "stack", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "stack_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "stack_in", + "description": "All values that are contained in given list.", "type": { "kind": "LIST", "name": null, @@ -251090,8 +104129,8 @@ "defaultValue": null }, { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", + "name": "stack_not_in", + "description": "All values that are not contained in given list.", "type": { "kind": "LIST", "name": null, @@ -251108,29 +104147,18 @@ "defaultValue": null }, { - "name": "node", - "description": null, + "name": "stack_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "SmsProviderWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SmsProviderUpdateDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", - "description": null, + "name": "stack_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -251139,21 +104167,81 @@ "defaultValue": null }, { - "name": "credentials", - "description": null, + "name": "stack_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "stack_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "stack_contains", + "description": "All values containing the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "stack_not_contains", + "description": "All values not containing the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "stack_starts_with", + "description": "All values starting with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "stack_not_starts_with", + "description": "All values not starting with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "stack_ends_with", + "description": "All values ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "stack_not_ends_with", + "description": "All values not ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null @@ -251165,12 +104253,32 @@ }, { "kind": "INPUT_OBJECT", - "name": "SmsProviderUpdateManyMutationInput", + "name": "LogUpdateInput", "description": null, "fields": null, "inputFields": [ { - "name": "name", + "name": "level", + "description": null, + "type": { + "kind": "ENUM", + "name": "LogLevel", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "objectType", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "message", "description": null, "type": { "kind": "SCALAR", @@ -251180,11 +104288,11 @@ "defaultValue": null }, { - "name": "credentials", + "name": "stack", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null @@ -251196,7 +104304,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "TagCreateInput", + "name": "LogWhereUniqueInput", "description": null, "fields": null, "inputFields": [ @@ -251209,52 +104317,73 @@ "ofType": null }, "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NoticeCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "type", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "NoticeType", + "ofType": null + } + }, + "defaultValue": null }, { - "name": "name", + "name": "User", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutNoticesInput", "ofType": null } }, "defaultValue": null }, { - "name": "status", + "name": "CreatedBy", "description": null, "type": { - "kind": "ENUM", - "name": "TagStatus", + "kind": "INPUT_OBJECT", + "name": "UserCreateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "ChatMessage", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutTagInput", + "name": "ChatMessageCreateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "ChatRoomInvitation", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutTagsInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "ChatRoomInvitationCreateOneWithoutNoticeInput", + "ofType": null }, "defaultValue": null } @@ -251265,7 +104394,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutTagsInput", + "name": "UserCreateOneWithoutNoticesInput", "description": null, "fields": null, "inputFields": [ @@ -251286,7 +104415,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "TagCreateManyWithoutCreatedByInput", + "name": "NoticeCreateManyWithoutUserInput", "description": null, "fields": null, "inputFields": [ @@ -251301,7 +104430,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TagWhereUniqueInput", + "name": "NoticeWhereUniqueInput", "ofType": null } } @@ -251315,50 +104444,54 @@ }, { "kind": "INPUT_OBJECT", - "name": "TagCreateWithoutCreatedByInput", + "name": "NoticeCreateWithoutChatRoomInvitationInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "type", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "NoticeType", + "ofType": null + } }, "defaultValue": null }, { - "name": "name", + "name": "User", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutNoticesInput", "ofType": null } }, "defaultValue": null }, { - "name": "status", + "name": "CreatedBy", "description": null, "type": { - "kind": "ENUM", - "name": "TagStatus", + "kind": "INPUT_OBJECT", + "name": "UserCreateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "ChatMessage", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutTagInput", + "name": "ChatMessageCreateOneInput", "ofType": null }, "defaultValue": null @@ -251370,55 +104503,51 @@ }, { "kind": "INPUT_OBJECT", - "name": "TagCreateWithoutResourcesInput", + "name": "NoticeCreateWithoutUserInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "type", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "NoticeType", + "ofType": null + } }, "defaultValue": null }, { - "name": "name", + "name": "CreatedBy", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "UserCreateOneInput", + "ofType": null }, "defaultValue": null }, { - "name": "status", + "name": "ChatMessage", "description": null, "type": { - "kind": "ENUM", - "name": "TagStatus", + "kind": "INPUT_OBJECT", + "name": "ChatMessageCreateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "ChatRoomInvitation", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutTagsInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "ChatRoomInvitationCreateOneWithoutNoticeInput", + "ofType": null }, "defaultValue": null } @@ -251428,123 +104557,96 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "TagPreviousValues", + "kind": "INPUT_OBJECT", + "name": "NoticeUpdateInput", "description": null, - "fields": [ + "fields": null, + "inputFields": [ { - "name": "id", + "name": "type", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "ENUM", + "name": "NoticeType", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "createdAt", + "name": "User", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutNoticesInput", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedAt", + "name": "CreatedBy", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneInput", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "name", + "name": "ChatMessage", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "ChatMessageUpdateOneInput", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "status", + "name": "ChatRoomInvitation", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TagStatus", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "ChatRoomInvitationUpdateOneWithoutNoticeInput", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "TagScalarWhereInput", + "name": "UserUpdateOneWithoutNoticesInput", "description": null, "fields": null, "inputFields": [ { - "name": "AND", - "description": "Logical AND on all given filters.", + "name": "connect", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TagScalarWhereInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", + "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NoticeUpdateManyWithoutUserInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "OR", - "description": "Logical OR on all given filters.", + "name": "connect", + "description": null, "type": { "kind": "LIST", "name": null, @@ -251553,7 +104655,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TagScalarWhereInput", + "name": "NoticeWhereUniqueInput", "ofType": null } } @@ -251561,8 +104663,8 @@ "defaultValue": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + "name": "disconnect", + "description": null, "type": { "kind": "LIST", "name": null, @@ -251571,306 +104673,262 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TagScalarWhereInput", + "name": "NoticeWhereUniqueInput", "ofType": null } } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NoticeUpdateWithoutChatRoomInvitationDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "id", + "name": "type", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "All values that are contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "All values that are not contained in given list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "All values containing the given string.", - "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "ENUM", + "name": "NoticeType", "ofType": null }, "defaultValue": null }, { - "name": "id_not_contains", - "description": "All values not containing the given string.", + "name": "User", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutNoticesInput", "ofType": null }, "defaultValue": null }, { - "name": "id_starts_with", - "description": "All values starting with the given string.", + "name": "CreatedBy", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", + "name": "ChatMessage", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "ChatMessageUpdateOneInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NoticeUpdateWithoutUserDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "id_ends_with", - "description": "All values ending with the given string.", + "name": "type", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "ENUM", + "name": "NoticeType", "ofType": null }, "defaultValue": null }, { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", + "name": "CreatedBy", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "createdAt", + "name": "ChatMessage", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "ChatMessageUpdateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", + "name": "ChatRoomInvitation", + "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "ChatRoomInvitationUpdateOneWithoutNoticeInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NoticeUpdateWithWhereUniqueWithoutUserInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "createdAt_in", - "description": "All values that are contained in given list.", + "name": "where", + "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "NoticeWhereUniqueInput", + "ofType": null } }, "defaultValue": null }, { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", + "name": "data", + "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "NoticeUpdateWithoutUserDataInput", + "ofType": null } }, "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NoticeUpsertWithWhereUniqueWithoutUserInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", + "name": "where", + "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NoticeWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NotificationTypeCreateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "createdAt_gt", - "description": "All values greater than the given value.", + "name": "name", + "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", + "name": "code", + "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt", + "name": "comment", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", + "name": "Users", + "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "UserCreateManyWithoutNotificationTypesInput", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", + "name": "CreatedBy", + "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutNotificationTypesCreatedInput", + "ofType": null } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserCreateManyWithoutNotificationTypesInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", + "name": "connect", + "description": null, "type": { "kind": "LIST", "name": null, @@ -251878,77 +104936,49 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", "ofType": null } } }, "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "All values less than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutNotificationTypesCreatedInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "name", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "All values that are not equal to given value.", - "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NotificationTypeCreateManyWithoutCreatedByInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "name_in", - "description": "All values that are contained in given list.", + "name": "connect", + "description": null, "type": { "kind": "LIST", "name": null, @@ -251956,17 +104986,28 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotificationTypeWhereUniqueInput", "ofType": null } } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NotificationTypeCreateManyWithoutUsersInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "name_not_in", - "description": "All values that are not contained in given list.", + "name": "connect", + "description": null, "type": { "kind": "LIST", "name": null, @@ -251974,37 +105015,52 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotificationTypeWhereUniqueInput", "ofType": null } } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NotificationTypeCreateWithoutCreatedByInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "name_lt", - "description": "All values less than the given value.", + "name": "name", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "name_lte", - "description": "All values less than or equal the given value.", + "name": "code", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "name_gt", - "description": "All values greater than the given value.", + "name": "comment", + "description": null, "type": { "kind": "SCALAR", "name": "String", @@ -252013,38 +105069,53 @@ "defaultValue": null }, { - "name": "name_gte", - "description": "All values greater than or equal the given value.", + "name": "Users", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserCreateManyWithoutNotificationTypesInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NotificationTypeCreateWithoutUsersInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "name_contains", - "description": "All values containing the given string.", + "name": "name", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "name_not_contains", - "description": "All values not containing the given string.", + "name": "code", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "name_starts_with", - "description": "All values starting with the given string.", + "name": "comment", + "description": null, "type": { "kind": "SCALAR", "name": "String", @@ -252053,99 +105124,126 @@ "defaultValue": null }, { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", + "name": "CreatedBy", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutNotificationTypesCreatedInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "NotificationTypePreviousValues", + "description": null, + "fields": [ { - "name": "name_ends_with", - "description": "All values ending with the given string.", + "name": "id", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", + "name": "createdAt", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "status", + "name": "updatedAt", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "TagStatus", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "status_not", - "description": "All values that are not equal to given value.", + "name": "name", + "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "TagStatus", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "status_in", - "description": "All values that are contained in given list.", + "name": "code", + "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TagStatus", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "status_not_in", - "description": "All values that are not contained in given list.", + "name": "comment", + "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TagStatus", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "TagSubscriptionPayload", + "name": "NotificationTypeSubscriptionPayload", "description": null, "fields": [ { @@ -252170,7 +105268,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "Tag", + "name": "NotificationType", "ofType": null }, "isDeprecated": false, @@ -252202,7 +105300,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "TagPreviousValues", + "name": "NotificationTypePreviousValues", "ofType": null }, "isDeprecated": false, @@ -252216,7 +105314,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "TagSubscriptionWhereInput", + "name": "NotificationTypeSubscriptionWhereInput", "description": null, "fields": null, "inputFields": [ @@ -252231,7 +105329,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TagSubscriptionWhereInput", + "name": "NotificationTypeSubscriptionWhereInput", "ofType": null } } @@ -252249,7 +105347,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TagSubscriptionWhereInput", + "name": "NotificationTypeSubscriptionWhereInput", "ofType": null } } @@ -252267,7 +105365,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TagSubscriptionWhereInput", + "name": "NotificationTypeSubscriptionWhereInput", "ofType": null } } @@ -252343,7 +105441,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TagWhereInput", + "name": "NotificationTypeWhereInput", "ofType": null }, "defaultValue": null @@ -252355,7 +105453,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "TagUpdateInput", + "name": "NotificationTypeUpdateInput", "description": null, "fields": null, "inputFields": [ @@ -252370,52 +105468,41 @@ "defaultValue": null }, { - "name": "status", + "name": "code", "description": null, "type": { - "kind": "ENUM", - "name": "TagStatus", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "comment", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutTagInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "Users", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutTagsInput", + "name": "UserUpdateManyWithoutNotificationTypesInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutTagsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", + "name": "UserUpdateOneWithoutNotificationTypesCreatedInput", "ofType": null }, "defaultValue": null @@ -252427,27 +105514,43 @@ }, { "kind": "INPUT_OBJECT", - "name": "TagUpdateManyDataInput", + "name": "UserUpdateManyWithoutNotificationTypesInput", "description": null, "fields": null, "inputFields": [ { - "name": "name", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "status", + "name": "disconnect", "description": null, "type": { - "kind": "ENUM", - "name": "TagStatus", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null } @@ -252458,26 +105561,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "TagUpdateManyMutationInput", + "name": "UserUpdateOneWithoutNotificationTypesCreatedInput", "description": null, "fields": null, "inputFields": [ { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", + "name": "connect", "description": null, "type": { - "kind": "ENUM", - "name": "TagStatus", + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", "ofType": null }, "defaultValue": null @@ -252489,7 +105582,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "TagUpdateManyWithoutCreatedByInput", + "name": "NotificationTypeUpdateManyWithoutCreatedByInput", "description": null, "fields": null, "inputFields": [ @@ -252504,25 +105597,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TagWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TagWhereUniqueInput", + "name": "NotificationTypeWhereUniqueInput", "ofType": null } } @@ -252540,15 +105615,26 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TagWhereUniqueInput", + "name": "NotificationTypeWhereUniqueInput", "ofType": null } } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NotificationTypeUpdateManyWithoutUsersInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "updateMany", + "name": "connect", "description": null, "type": { "kind": "LIST", @@ -252558,7 +105644,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TagUpdateManyWithWhereNestedInput", + "name": "NotificationTypeWhereUniqueInput", "ofType": null } } @@ -252566,7 +105652,7 @@ "defaultValue": null }, { - "name": "deleteMany", + "name": "disconnect", "description": null, "type": { "kind": "LIST", @@ -252576,7 +105662,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TagScalarWhereInput", + "name": "NotificationTypeWhereUniqueInput", "ofType": null } } @@ -252590,75 +105676,46 @@ }, { "kind": "INPUT_OBJECT", - "name": "TagUpdateManyWithWhereNestedInput", + "name": "NotificationTypeUpdateWithoutCreatedByDataInput", "description": null, "fields": null, "inputFields": [ { - "name": "where", + "name": "name", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TagScalarWhereInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TagUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TagUpdateWithoutCreatedByDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", + "name": "code", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "status", + "name": "comment", "description": null, "type": { - "kind": "ENUM", - "name": "TagStatus", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "Users", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutTagInput", + "name": "UserUpdateManyWithoutNotificationTypesInput", "ofType": null }, "defaultValue": null @@ -252670,7 +105727,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "TagUpdateWithoutResourcesDataInput", + "name": "NotificationTypeUpdateWithoutUsersDataInput", "description": null, "fields": null, "inputFields": [ @@ -252685,11 +105742,21 @@ "defaultValue": null }, { - "name": "status", + "name": "code", "description": null, "type": { - "kind": "ENUM", - "name": "TagStatus", + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "comment", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null @@ -252699,7 +105766,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutTagsInput", + "name": "UserUpdateOneWithoutNotificationTypesCreatedInput", "ofType": null }, "defaultValue": null @@ -252711,7 +105778,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "TagUpdateWithWhereUniqueWithoutCreatedByInput", + "name": "NotificationTypeUpdateWithWhereUniqueWithoutCreatedByInput", "description": null, "fields": null, "inputFields": [ @@ -252723,7 +105790,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TagWhereUniqueInput", + "name": "NotificationTypeWhereUniqueInput", "ofType": null } }, @@ -252737,7 +105804,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TagUpdateWithoutCreatedByDataInput", + "name": "NotificationTypeUpdateWithoutCreatedByDataInput", "ofType": null } }, @@ -252750,7 +105817,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "TagUpsertWithWhereUniqueWithoutCreatedByInput", + "name": "NotificationTypeUpdateWithWhereUniqueWithoutUsersInput", "description": null, "fields": null, "inputFields": [ @@ -252762,7 +105829,21 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TagWhereUniqueInput", + "name": "NotificationTypeWhereUniqueInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotificationTypeUpdateWithoutUsersDataInput", "ofType": null } }, @@ -252775,17 +105856,21 @@ }, { "kind": "INPUT_OBJECT", - "name": "TaskCreateOneWithoutMembersInput", + "name": "NotificationTypeUpsertWithWhereUniqueWithoutCreatedByInput", "description": null, "fields": null, "inputFields": [ { - "name": "connect", + "name": "where", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotificationTypeWhereUniqueInput", + "ofType": null + } }, "defaultValue": null } @@ -252796,203 +105881,23 @@ }, { "kind": "INPUT_OBJECT", - "name": "TaskCreateWithoutChatRoomInput", + "name": "NotificationTypeUpsertWithWhereUniqueWithoutUsersInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", + "name": "where", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotificationTypeWhereUniqueInput", "ofType": null } }, "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "content", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "TaskStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startDatePlaning", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endDatePlaning", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startDate", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endDate", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "TaskProjects", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskCreateManyWithoutTaskInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Members", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutTaskInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Parent", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateOneWithoutChildsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Childs", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateManyWithoutParentInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "RelatedFrom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateManyWithoutRelatedToInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "RelatedTo", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateManyWithoutRelatedFromInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Timers", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutTaskInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Reactions", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutTaskInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CodeChallengeCompletion", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateOneWithoutTaskInput", - "ofType": null - }, - "defaultValue": null } ], "interfaces": null, @@ -253000,282 +105905,320 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "TaskCreateWithoutChildsInput", + "kind": "OBJECT", + "name": "Photo", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { "name": "id", "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description", + "name": "photo_id", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "content", + "name": "user_id", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Json", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "status", + "name": "type_id", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "TaskStatus", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "startDatePlaning", + "name": "name", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "endDatePlaning", + "name": "description", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "startDate", + "name": "num_comments", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "endDate", + "name": "created_at", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "DateTime", "ofType": null }, - "defaultValue": null - }, - { - "name": "TaskProjects", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskCreateManyWithoutTaskInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Members", + "name": "updated_at", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Parent", + "name": "file_name", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateOneWithoutChildsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ { - "name": "RelatedFrom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateManyWithoutRelatedToInput", - "ofType": null - }, - "defaultValue": null - }, + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PhotoConnection", + "description": "A connection to a list of items.", + "fields": [ { - "name": "RelatedTo", - "description": null, + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateManyWithoutRelatedFromInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Timers", - "description": null, + "name": "edges", + "description": "A list of edges.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutTaskInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PhotoEdge", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Reactions", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutTaskInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AggregatePhoto", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PhotoEdge", + "description": "An edge in a connection.", + "fields": [ { - "name": "ChatRoom", - "description": null, + "name": "node", + "description": "The item at the end of the edge.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateOneWithoutTaskInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Photo", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CodeChallengeCompletion", - "description": null, + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateOneWithoutTaskInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "TaskCreateWithoutCodeChallengeCompletionInput", + "name": "PhotoCreateInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "photo_id", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "user_id", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "description", + "name": "type_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "content", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "status", + "name": "description", "description": null, "type": { - "kind": "ENUM", - "name": "TaskStatus", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "startDatePlaning", + "name": "num_comments", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "endDatePlaning", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", @@ -253285,7 +106228,7 @@ "defaultValue": null }, { - "name": "startDate", + "name": "updated_at", "description": null, "type": { "kind": "SCALAR", @@ -253295,316 +106238,511 @@ "defaultValue": null }, { - "name": "endDate", + "name": "file_name", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "PhotoOrderByInput", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "TaskProjects", + "name": "id_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskCreateManyWithoutTaskInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "photo_id_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Members", + "name": "photo_id_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutTaskInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Parent", + "name": "user_id_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateOneWithoutChildsInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Childs", + "name": "user_id_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateManyWithoutParentInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "RelatedFrom", + "name": "type_id_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateManyWithoutRelatedToInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "RelatedTo", + "name": "type_id_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateManyWithoutRelatedFromInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Timers", + "name": "name_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutTaskInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Reactions", + "name": "name_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutTaskInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ChatRoom", + "name": "description_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateOneWithoutTaskInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "num_comments_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "num_comments_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "file_name_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "file_name_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "TaskCreateWithoutMembersInput", + "kind": "OBJECT", + "name": "PhotoPreviousValues", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { "name": "id", "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description", + "name": "photo_id", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "content", + "name": "user_id", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Json", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "status", + "name": "type_id", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "TaskStatus", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "startDatePlaning", + "name": "name", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "endDatePlaning", + "name": "description", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "startDate", + "name": "num_comments", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "endDate", + "name": "created_at", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "DateTime", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "TaskProjects", + "name": "updated_at", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskCreateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "file_name", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PhotoSubscriptionPayload", + "description": null, + "fields": [ + { + "name": "mutation", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Parent", + "name": "node", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateOneWithoutChildsInput", + "kind": "OBJECT", + "name": "Photo", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Childs", + "name": "updatedFields", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateManyWithoutParentInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "RelatedFrom", + "name": "previousValues", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateManyWithoutRelatedToInput", + "kind": "OBJECT", + "name": "PhotoPreviousValues", "ofType": null }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PhotoSubscriptionWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": "Logical AND on all given filters.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PhotoSubscriptionWhereInput", + "ofType": null + } + } + }, "defaultValue": null }, { - "name": "RelatedTo", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateManyWithoutRelatedFromInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PhotoSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Timers", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutTaskInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PhotoSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Reactions", - "description": null, + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutTaskInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "ChatRoom", - "description": null, + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateOneWithoutTaskInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletion", + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "node", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateOneWithoutTaskInput", + "name": "PhotoWhereInput", "ofType": null }, "defaultValue": null @@ -253616,426 +106754,504 @@ }, { "kind": "INPUT_OBJECT", - "name": "TaskCreateWithoutParentInput", + "name": "PhotoWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PhotoWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "name", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PhotoWhereInput", + "ofType": null + } } }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PhotoWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "content", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "status", - "description": null, + "name": "id_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "ENUM", - "name": "TaskStatus", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "startDatePlaning", - "description": null, + "name": "id_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "endDatePlaning", - "description": null, + "name": "id_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "startDate", - "description": null, + "name": "id_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "endDate", - "description": null, + "name": "id_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "TaskProjects", - "description": null, + "name": "id_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskCreateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "id_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Members", - "description": null, + "name": "id_contains", + "description": "All values containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Childs", - "description": null, + "name": "id_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateManyWithoutParentInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "RelatedFrom", - "description": null, + "name": "id_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateManyWithoutRelatedToInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "RelatedTo", - "description": null, + "name": "id_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateManyWithoutRelatedFromInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Timers", - "description": null, + "name": "id_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Reactions", - "description": null, + "name": "id_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "ChatRoom", + "name": "photo_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateOneWithoutTaskInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletion", - "description": null, + "name": "photo_id_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateOneWithoutTaskInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskCreateWithoutReactionsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "photo_id_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "name", - "description": null, + "name": "photo_id_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "photo_id_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "content", - "description": null, + "name": "photo_id_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "status", - "description": null, + "name": "photo_id_gt", + "description": "All values greater than the given value.", "type": { - "kind": "ENUM", - "name": "TaskStatus", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "startDatePlaning", - "description": null, + "name": "photo_id_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "endDatePlaning", + "name": "user_id", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "startDate", - "description": null, + "name": "user_id_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "endDate", - "description": null, + "name": "user_id_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "user_id_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "user_id_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "TaskProjects", - "description": null, + "name": "user_id_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskCreateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "user_id_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Members", - "description": null, + "name": "user_id_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Parent", + "name": "type_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateOneWithoutChildsInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Childs", - "description": null, + "name": "type_id_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateManyWithoutParentInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "RelatedFrom", - "description": null, + "name": "type_id_in", + "description": "All values that are contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateManyWithoutRelatedToInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "RelatedTo", - "description": null, + "name": "type_id_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateManyWithoutRelatedFromInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Timers", - "description": null, + "name": "type_id_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "ChatRoom", - "description": null, + "name": "type_id_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateOneWithoutTaskInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletion", - "description": null, + "name": "type_id_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateOneWithoutTaskInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskCreateWithoutRelatedFromInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "type_id_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null @@ -254044,19 +107260,15 @@ "name": "name", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "name_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", "name": "String", @@ -254065,203 +107277,230 @@ "defaultValue": null }, { - "name": "content", - "description": null, + "name": "name_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "status", - "description": null, + "name": "name_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "ENUM", - "name": "TaskStatus", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "startDatePlaning", - "description": null, + "name": "name_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "endDatePlaning", - "description": null, + "name": "name_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "startDate", - "description": null, + "name": "name_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "endDate", - "description": null, + "name": "name_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TaskProjects", - "description": null, + "name": "name_contains", + "description": "All values containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskCreateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "name_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Members", - "description": null, + "name": "name_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Parent", - "description": null, + "name": "name_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateOneWithoutChildsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Childs", - "description": null, + "name": "name_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateManyWithoutParentInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "RelatedTo", - "description": null, + "name": "name_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateManyWithoutRelatedFromInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "description", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Reactions", - "description": null, + "name": "description_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ChatRoom", - "description": null, + "name": "description_in", + "description": "All values that are contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateOneWithoutTaskInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "CodeChallengeCompletion", - "description": null, + "name": "description_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateOneWithoutTaskInput", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "description_lt", + "description": "All values less than the given value.", + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskCreateWithoutRelatedToInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "description_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "name", - "description": null, + "name": "description_gt", + "description": "All values greater than the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "description_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -254270,233 +107509,250 @@ "defaultValue": null }, { - "name": "content", - "description": null, + "name": "description_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "status", - "description": null, + "name": "description_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "ENUM", - "name": "TaskStatus", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "startDatePlaning", - "description": null, + "name": "description_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "endDatePlaning", - "description": null, + "name": "description_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "startDate", - "description": null, + "name": "description_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "endDate", - "description": null, + "name": "description_not_ends_with", + "description": "All values not ending with the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TaskProjects", + "name": "num_comments", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskCreateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "num_comments_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Members", - "description": null, + "name": "num_comments_in", + "description": "All values that are contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutTaskInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Parent", - "description": null, + "name": "num_comments_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateOneWithoutChildsInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Childs", - "description": null, + "name": "num_comments_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateManyWithoutParentInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "RelatedFrom", - "description": null, + "name": "num_comments_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateManyWithoutRelatedToInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Timers", - "description": null, + "name": "num_comments_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Reactions", - "description": null, + "name": "num_comments_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "ChatRoom", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateOneWithoutTaskInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletion", - "description": null, + "name": "created_at_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateOneWithoutTaskInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskCreateWithoutTaskProjectsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "created_at_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "name", - "description": null, + "name": "created_at_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } } }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "created_at_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "content", - "description": null, + "name": "created_at_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "status", - "description": null, + "name": "created_at_gt", + "description": "All values greater than the given value.", "type": { - "kind": "ENUM", - "name": "TaskStatus", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "startDatePlaning", - "description": null, + "name": "created_at_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", "name": "DateTime", @@ -254505,7 +107761,7 @@ "defaultValue": null }, { - "name": "endDatePlaning", + "name": "updated_at", "description": null, "type": { "kind": "SCALAR", @@ -254515,8 +107771,8 @@ "defaultValue": null }, { - "name": "startDate", - "description": null, + "name": "updated_at_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", "name": "DateTime", @@ -254525,153 +107781,170 @@ "defaultValue": null }, { - "name": "endDate", - "description": null, + "name": "updated_at_in", + "description": "All values that are contained in given list.", "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "updated_at_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Members", - "description": null, + "name": "updated_at_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Parent", - "description": null, + "name": "updated_at_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateOneWithoutChildsInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Childs", - "description": null, + "name": "updated_at_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateManyWithoutParentInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "RelatedFrom", - "description": null, + "name": "updated_at_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateManyWithoutRelatedToInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "RelatedTo", + "name": "file_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateManyWithoutRelatedFromInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Timers", - "description": null, + "name": "file_name_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Reactions", - "description": null, + "name": "file_name_in", + "description": "All values that are contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutTaskInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "ChatRoom", - "description": null, + "name": "file_name_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateOneWithoutTaskInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "CodeChallengeCompletion", - "description": null, + "name": "file_name_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateOneWithoutTaskInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskCreateWithoutTimersInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "file_name_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "name", - "description": null, + "name": "file_name_gt", + "description": "All values greater than the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "file_name_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", "name": "String", @@ -254680,161 +107953,193 @@ "defaultValue": null }, { - "name": "content", - "description": null, + "name": "file_name_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "status", - "description": null, + "name": "file_name_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "ENUM", - "name": "TaskStatus", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "startDatePlaning", - "description": null, + "name": "file_name_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "endDatePlaning", - "description": null, + "name": "file_name_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "startDate", - "description": null, + "name": "file_name_ends_with", + "description": "All values ending with the given string.", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "endDate", + "name": "file_name_not_ends_with", + "description": "All values not ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PhotoUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "photo_id", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "TaskProjects", + "name": "user_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskCreateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "type_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Members", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Parent", + "name": "description", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateOneWithoutChildsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Childs", + "name": "num_comments", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateManyWithoutParentInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "RelatedFrom", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateManyWithoutRelatedToInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "RelatedTo", + "name": "updated_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateManyWithoutRelatedFromInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Reactions", + "name": "file_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PhotoWhereUniqueInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "ChatRoom", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateOneWithoutTaskInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletion", + "name": "photo_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateOneWithoutTaskInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null @@ -254846,7 +108151,7 @@ }, { "kind": "OBJECT", - "name": "TaskMemberConnection", + "name": "PlaceBeerConnection", "description": "A connection to a list of items.", "fields": [ { @@ -254877,7 +108182,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "TaskMemberEdge", + "name": "PlaceBeerEdge", "ofType": null } } @@ -254894,7 +108199,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AggregateTaskMember", + "name": "AggregatePlaceBeer", "ofType": null } }, @@ -254909,7 +108214,7 @@ }, { "kind": "OBJECT", - "name": "TaskMemberEdge", + "name": "PlaceBeerEdge", "description": "An edge in a connection.", "fields": [ { @@ -254921,7 +108226,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "TaskMember", + "name": "PlaceBeer", "ofType": null } }, @@ -254952,67 +108257,43 @@ }, { "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateInput", + "name": "PlaceBeerCreateInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "price", "description": null, "type": { "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TaskMemberStatus", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Task", + "name": "Place", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TaskCreateOneWithoutMembersInput", + "name": "PlaceCreateOneWithoutBeersInput", "ofType": null } }, "defaultValue": null }, { - "name": "User", + "name": "Beer", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutTasksInput", + "name": "BeerCreateOneWithoutPlacesInput", "ofType": null } }, @@ -255025,7 +108306,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutTasksInput", + "name": "PlaceBeerCreateManyWithoutBeerInput", "description": null, "fields": null, "inputFields": [ @@ -255033,9 +108314,17 @@ "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PlaceBeerWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null } @@ -255046,7 +108335,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutUserInput", + "name": "PlaceBeerCreateManyWithoutPlaceInput", "description": null, "fields": null, "inputFields": [ @@ -255061,7 +108350,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TaskMemberWhereUniqueInput", + "name": "PlaceBeerWhereUniqueInput", "ofType": null } } @@ -255075,53 +108364,29 @@ }, { "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateWithoutTaskInput", + "name": "PlaceBeerCreateWithoutBeerInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "price", "description": null, "type": { "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TaskMemberStatus", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "User", + "name": "Place", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutTasksInput", + "name": "PlaceCreateOneWithoutBeersInput", "ofType": null } }, @@ -255134,53 +108399,29 @@ }, { "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateWithoutUserInput", + "name": "PlaceBeerCreateWithoutPlaceInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "price", "description": null, "type": { "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TaskMemberStatus", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Task", + "name": "Beer", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TaskCreateOneWithoutMembersInput", + "name": "BeerCreateOneWithoutPlacesInput", "ofType": null } }, @@ -255193,7 +108434,7 @@ }, { "kind": "OBJECT", - "name": "TaskMemberPreviousValues", + "name": "PlaceBeerPreviousValues", "description": null, "fields": [ { @@ -255213,49 +108454,13 @@ "deprecationReason": null }, { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", + "name": "price", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TaskMemberStatus", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -255268,7 +108473,7 @@ }, { "kind": "OBJECT", - "name": "TaskMemberSubscriptionPayload", + "name": "PlaceBeerSubscriptionPayload", "description": null, "fields": [ { @@ -255293,7 +108498,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "TaskMember", + "name": "PlaceBeer", "ofType": null }, "isDeprecated": false, @@ -255325,7 +108530,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "TaskMemberPreviousValues", + "name": "PlaceBeerPreviousValues", "ofType": null }, "isDeprecated": false, @@ -255339,7 +108544,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "TaskMemberSubscriptionWhereInput", + "name": "PlaceBeerSubscriptionWhereInput", "description": null, "fields": null, "inputFields": [ @@ -255354,7 +108559,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TaskMemberSubscriptionWhereInput", + "name": "PlaceBeerSubscriptionWhereInput", "ofType": null } } @@ -255372,7 +108577,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TaskMemberSubscriptionWhereInput", + "name": "PlaceBeerSubscriptionWhereInput", "ofType": null } } @@ -255390,7 +108595,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TaskMemberSubscriptionWhereInput", + "name": "PlaceBeerSubscriptionWhereInput", "ofType": null } } @@ -255466,121 +108671,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskMemberWhereInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "TaskMemberStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Task", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateOneRequiredWithoutMembersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "User", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutTasksInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateOneRequiredWithoutMembersInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutTasksInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "TaskMemberStatus", + "name": "PlaceBeerWhereInput", "ofType": null }, "defaultValue": null @@ -255592,7 +108683,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutUserInput", + "name": "PlaceBeerUpdateManyWithoutBeerInput", "description": null, "fields": null, "inputFields": [ @@ -255607,25 +108698,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TaskMemberWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberWhereUniqueInput", + "name": "PlaceBeerWhereUniqueInput", "ofType": null } } @@ -255643,15 +108716,26 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TaskMemberWhereUniqueInput", + "name": "PlaceBeerWhereUniqueInput", "ofType": null } } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PlaceBeerUpdateManyWithoutPlaceInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "updateMany", + "name": "connect", "description": null, "type": { "kind": "LIST", @@ -255661,7 +108745,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithWhereNestedInput", + "name": "PlaceBeerWhereUniqueInput", "ofType": null } } @@ -255669,7 +108753,7 @@ "defaultValue": null }, { - "name": "deleteMany", + "name": "disconnect", "description": null, "type": { "kind": "LIST", @@ -255679,7 +108763,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TaskMemberScalarWhereInput", + "name": "PlaceBeerWhereUniqueInput", "ofType": null } } @@ -255693,36 +108777,26 @@ }, { "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateWithoutTaskDataInput", + "name": "PlaceBeerUpdateWithoutBeerDataInput", "description": null, "fields": null, "inputFields": [ { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "TaskMemberStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", + "name": "price", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "User", + "name": "Place", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutTasksInput", + "name": "PlaceUpdateOneWithoutBeersInput", "ofType": null }, "defaultValue": null @@ -255734,36 +108808,26 @@ }, { "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateWithoutUserDataInput", + "name": "PlaceBeerUpdateWithoutPlaceDataInput", "description": null, "fields": null, "inputFields": [ { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "TaskMemberStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", + "name": "price", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Task", + "name": "Beer", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskUpdateOneRequiredWithoutMembersInput", + "name": "BeerUpdateOneWithoutPlacesInput", "ofType": null }, "defaultValue": null @@ -255775,7 +108839,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateWithWhereUniqueWithoutTaskInput", + "name": "PlaceBeerUpdateWithWhereUniqueWithoutBeerInput", "description": null, "fields": null, "inputFields": [ @@ -255787,7 +108851,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TaskMemberWhereUniqueInput", + "name": "PlaceBeerWhereUniqueInput", "ofType": null } }, @@ -255801,7 +108865,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateWithoutTaskDataInput", + "name": "PlaceBeerUpdateWithoutBeerDataInput", "ofType": null } }, @@ -255814,7 +108878,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateWithWhereUniqueWithoutUserInput", + "name": "PlaceBeerUpdateWithWhereUniqueWithoutPlaceInput", "description": null, "fields": null, "inputFields": [ @@ -255826,7 +108890,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TaskMemberWhereUniqueInput", + "name": "PlaceBeerWhereUniqueInput", "ofType": null } }, @@ -255840,7 +108904,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateWithoutUserDataInput", + "name": "PlaceBeerUpdateWithoutPlaceDataInput", "ofType": null } }, @@ -255853,7 +108917,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "TaskMemberUpsertWithWhereUniqueWithoutTaskInput", + "name": "PlaceBeerUpsertWithWhereUniqueWithoutBeerInput", "description": null, "fields": null, "inputFields": [ @@ -255865,7 +108929,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TaskMemberWhereUniqueInput", + "name": "PlaceBeerWhereUniqueInput", "ofType": null } }, @@ -255878,7 +108942,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "TaskMemberUpsertWithWhereUniqueWithoutUserInput", + "name": "PlaceBeerUpsertWithWhereUniqueWithoutPlaceInput", "description": null, "fields": null, "inputFields": [ @@ -255890,7 +108954,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TaskMemberWhereUniqueInput", + "name": "PlaceBeerWhereUniqueInput", "ofType": null } }, @@ -255903,7 +108967,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutCreatedByInput", + "name": "PlaceCreateManyWithoutOwnerInput", "description": null, "fields": null, "inputFields": [ @@ -255918,7 +108982,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TaskReactionWhereUniqueInput", + "name": "PlaceWhereUniqueInput", "ofType": null } } @@ -255932,305 +108996,527 @@ }, { "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateWithoutCreatedByInput", + "name": "PlaceCreateWithoutBeersInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "place_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "description", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "address", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lng", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lat", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "website", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "phone", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "work_hours", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "metro", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "content", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Json", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "schedules", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Json", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url_name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "image", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gallery", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Json", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "is_bar", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "is_shop", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "is_brewery", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "active", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "email", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "best", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "is_request", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Owner", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutPlacesInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Letters", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LetterCreateManyWithoutPlaceInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutPlacesInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PlaceCreateWithoutLettersInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "place_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "description", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "address", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lng", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lat", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "type", + "name": "website", "description": null, "type": { - "kind": "ENUM", - "name": "TaskReactionType", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Task", + "name": "phone", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateOneWithoutReactionsInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateWithoutTaskInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "work_hours", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "type", + "name": "metro", "description": null, "type": { - "kind": "ENUM", - "name": "TaskReactionType", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "content", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutTasksReactionsInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "type", + "name": "schedules", "description": null, "type": { - "kind": "ENUM", - "name": "TaskReactionType", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "url_name", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "set", + "name": "image", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "disconnect", + "name": "gallery", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Json", + "ofType": null }, "defaultValue": null }, { - "name": "updateMany", + "name": "is_bar", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithWhereNestedInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null }, { - "name": "deleteMany", + "name": "is_shop", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionScalarWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateWithoutCreatedByDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "type", + "name": "is_brewery", "description": null, "type": { - "kind": "ENUM", - "name": "TaskReactionType", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Task", + "name": "active", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateOneRequiredWithoutReactionsInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateWithoutTaskDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "type", + "name": "email", "description": null, "type": { - "kind": "ENUM", - "name": "TaskReactionType", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "best", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutTasksReactionsInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateWithWhereUniqueWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "is_request", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "data", + "name": "beers", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateWithoutCreatedByDataInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "PlaceBeerCreateManyWithoutPlaceInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Owner", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutPlacesInput", + "ofType": null }, "defaultValue": null } @@ -256241,192 +109527,136 @@ }, { "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateWithWhereUniqueWithoutTaskInput", + "name": "PlaceCreateWithoutOwnerInput", "description": null, "fields": null, "inputFields": [ { - "name": "where", + "name": "place_id", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "data", + "name": "name", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateWithoutTaskDataInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpsertWithWhereUniqueWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "description", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpsertWithWhereUniqueWithoutTaskInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "address", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", + "name": "lng", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "description", + "name": "lat", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "content", + "name": "website", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "status", + "name": "phone", "description": null, "type": { - "kind": "ENUM", - "name": "TaskStatus", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "startDatePlaning", + "name": "work_hours", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "endDatePlaning", + "name": "metro", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "startDate", + "name": "content", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "endDate", + "name": "schedules", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Json", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateWithoutChatRoomDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", + "name": "url_name", "description": null, "type": { "kind": "SCALAR", @@ -256436,7 +109666,7 @@ "defaultValue": null }, { - "name": "description", + "name": "image", "description": null, "type": { "kind": "SCALAR", @@ -256446,7 +109676,7 @@ "defaultValue": null }, { - "name": "content", + "name": "gallery", "description": null, "type": { "kind": "SCALAR", @@ -256456,343 +109686,676 @@ "defaultValue": null }, { - "name": "status", + "name": "is_bar", "description": null, "type": { - "kind": "ENUM", - "name": "TaskStatus", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "startDatePlaning", + "name": "is_shop", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "endDatePlaning", + "name": "is_brewery", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "startDate", + "name": "active", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "endDate", + "name": "email", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TaskProjects", + "name": "best", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskUpdateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "is_request", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Members", + "name": "beers", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutTaskInput", + "name": "PlaceBeerCreateManyWithoutPlaceInput", "ofType": null }, "defaultValue": null }, { - "name": "Parent", + "name": "Letters", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskUpdateOneWithoutChildsInput", + "name": "LetterCreateManyWithoutPlaceInput", "ofType": null }, "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PlacePreviousValues", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Childs", + "name": "updatedAt", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyWithoutParentInput", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "place_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "RelatedFrom", + "name": "name", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyWithoutRelatedToInput", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "address", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "RelatedTo", + "name": "lng", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyWithoutRelatedFromInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Timers", + "name": "lat", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Reactions", + "name": "website", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CodeChallengeCompletion", + "name": "phone", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateOneWithoutTaskInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateWithoutChildsDataInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "name", + "name": "work_hours", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description", + "name": "metro", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "content", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Json", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "schedules", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "Json", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "status", + "name": "url_name", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "TaskStatus", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "startDatePlaning", + "name": "image", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "endDatePlaning", + "name": "gallery", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Json", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "startDate", + "name": "is_bar", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Boolean", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "endDate", + "name": "is_shop", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Boolean", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "TaskProjects", + "name": "is_brewery", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskUpdateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "active", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Members", + "name": "email", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Parent", + "name": "best", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateOneWithoutChildsInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "RelatedFrom", + "name": "is_request", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyWithoutRelatedToInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PlaceSubscriptionPayload", + "description": null, + "fields": [ + { + "name": "mutation", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "RelatedTo", + "name": "node", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyWithoutRelatedFromInput", + "kind": "OBJECT", + "name": "Place", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Timers", + "name": "updatedFields", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutTaskInput", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "previousValues", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "PlacePreviousValues", "ofType": null }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PlaceSubscriptionWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": "Logical AND on all given filters.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PlaceSubscriptionWhereInput", + "ofType": null + } + } + }, "defaultValue": null }, { - "name": "Reactions", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutTaskInput", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PlaceSubscriptionWhereInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PlaceSubscriptionWhereInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ChatRoom", + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "node", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateOneWithoutTaskInput", + "name": "PlaceWhereInput", "ofType": null }, "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PlaceUpdateManyWithoutOwnerInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PlaceWhereUniqueInput", + "ofType": null + } + } + }, + "defaultValue": null }, { - "name": "CodeChallengeCompletion", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateOneWithoutTaskInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PlaceWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null } @@ -256803,22 +110366,22 @@ }, { "kind": "INPUT_OBJECT", - "name": "TaskUpdateWithoutCodeChallengeCompletionDataInput", + "name": "PlaceUpdateWithoutBeersDataInput", "description": null, "fields": null, "inputFields": [ { - "name": "name", + "name": "place_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "description", + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -256828,188 +110391,177 @@ "defaultValue": null }, { - "name": "content", + "name": "description", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "status", + "name": "address", "description": null, "type": { - "kind": "ENUM", - "name": "TaskStatus", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "startDatePlaning", + "name": "lng", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "endDatePlaning", + "name": "lat", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "startDate", + "name": "website", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "endDate", + "name": "phone", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TaskProjects", + "name": "work_hours", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskUpdateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "metro", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Members", + "name": "content", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "Parent", + "name": "schedules", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateOneWithoutChildsInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "Childs", + "name": "url_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyWithoutParentInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "RelatedFrom", + "name": "image", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyWithoutRelatedToInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "RelatedTo", + "name": "gallery", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyWithoutRelatedFromInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "is_bar", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Reactions", + "name": "is_shop", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "ChatRoom", + "name": "is_brewery", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateOneWithoutTaskInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateWithoutMembersDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", + "name": "active", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "description", + "name": "email", "description": null, "type": { "kind": "SCALAR", @@ -257019,178 +110571,178 @@ "defaultValue": null }, { - "name": "content", + "name": "best", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "status", + "name": "is_request", "description": null, "type": { - "kind": "ENUM", - "name": "TaskStatus", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "startDatePlaning", + "name": "Owner", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutPlacesInput", "ofType": null }, "defaultValue": null }, { - "name": "endDatePlaning", + "name": "Letters", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "LetterUpdateManyWithoutPlaceInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PlaceUpdateWithoutLettersDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "startDate", + "name": "place_id", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "endDate", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TaskProjects", + "name": "description", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskUpdateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Parent", + "name": "lng", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateOneWithoutChildsInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Childs", + "name": "lat", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyWithoutParentInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "RelatedFrom", + "name": "website", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyWithoutRelatedToInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "RelatedTo", + "name": "phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyWithoutRelatedFromInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "work_hours", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Reactions", + "name": "metro", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ChatRoom", + "name": "content", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateOneWithoutTaskInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletion", + "name": "schedules", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateOneWithoutTaskInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateWithoutParentDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", + "name": "url_name", "description": null, "type": { "kind": "SCALAR", @@ -257200,7 +110752,7 @@ "defaultValue": null }, { - "name": "description", + "name": "image", "description": null, "type": { "kind": "SCALAR", @@ -257210,7 +110762,7 @@ "defaultValue": null }, { - "name": "content", + "name": "gallery", "description": null, "type": { "kind": "SCALAR", @@ -257220,168 +110772,168 @@ "defaultValue": null }, { - "name": "status", + "name": "is_bar", "description": null, "type": { - "kind": "ENUM", - "name": "TaskStatus", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "startDatePlaning", + "name": "is_shop", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "endDatePlaning", + "name": "is_brewery", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "startDate", + "name": "active", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "endDate", + "name": "email", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TaskProjects", + "name": "best", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskUpdateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "is_request", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Members", + "name": "beers", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutTaskInput", + "name": "PlaceBeerUpdateManyWithoutPlaceInput", "ofType": null }, "defaultValue": null }, { - "name": "Childs", + "name": "Owner", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyWithoutParentInput", + "name": "UserUpdateOneWithoutPlacesInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PlaceUpdateWithoutOwnerDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "RelatedFrom", + "name": "place_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyWithoutRelatedToInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "RelatedTo", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyWithoutRelatedFromInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "description", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Reactions", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ChatRoom", + "name": "lng", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateOneWithoutTaskInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletion", + "name": "lat", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateOneWithoutTaskInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateWithoutReactionsDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", + "name": "website", "description": null, "type": { "kind": "SCALAR", @@ -257391,7 +110943,7 @@ "defaultValue": null }, { - "name": "description", + "name": "phone", "description": null, "type": { "kind": "SCALAR", @@ -257401,161 +110953,161 @@ "defaultValue": null }, { - "name": "content", + "name": "work_hours", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "status", + "name": "metro", "description": null, "type": { - "kind": "ENUM", - "name": "TaskStatus", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "startDatePlaning", + "name": "content", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "endDatePlaning", + "name": "schedules", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "startDate", + "name": "url_name", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "endDate", + "name": "image", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TaskProjects", + "name": "gallery", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskUpdateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "is_bar", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Members", + "name": "is_shop", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Parent", + "name": "is_brewery", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateOneWithoutChildsInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Childs", + "name": "active", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyWithoutParentInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "RelatedFrom", + "name": "email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyWithoutRelatedToInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "RelatedTo", + "name": "best", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyWithoutRelatedFromInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "is_request", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "ChatRoom", + "name": "beers", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateOneWithoutTaskInput", + "name": "PlaceBeerUpdateManyWithoutPlaceInput", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletion", + "name": "Letters", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateOneWithoutTaskInput", + "name": "LetterUpdateManyWithoutPlaceInput", "ofType": null }, "defaultValue": null @@ -257567,186 +111119,376 @@ }, { "kind": "INPUT_OBJECT", - "name": "TaskUpdateWithoutRelatedFromDataInput", + "name": "PlaceUpdateWithWhereUniqueWithoutOwnerInput", "description": null, "fields": null, "inputFields": [ { - "name": "name", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PlaceWhereUniqueInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "description", + "name": "data", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PlaceUpdateWithoutOwnerDataInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PlaceUpsertWithWhereUniqueWithoutOwnerInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "content", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PlaceWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectConnection", + "description": "A connection to a list of items.", + "fields": [ { - "name": "status", - "description": null, + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { - "kind": "ENUM", - "name": "TaskStatus", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "startDatePlaning", - "description": null, + "name": "edges", + "description": "A list of edges.", + "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectEdge", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "endDatePlaning", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AggregateProject", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectEdge", + "description": "An edge in a connection.", + "fields": [ { - "name": "startDate", - "description": null, + "name": "node", + "description": "The item at the end of the edge.", + "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "endDate", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "domain", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TaskProjects", + "name": "PrismaResources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTaskUpdateManyWithoutTaskInput", + "name": "ResourceCreateManyWithoutPrismaProjectInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "PrismaUsers", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "name": "UserCreateManyWithoutPrismaProjectsInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceCreateManyWithoutPrismaProjectInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Members", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutTaskInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserCreateManyWithoutPrismaProjectsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Parent", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateOneWithoutChildsInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectCreateManyWithoutPrismaUsersInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Childs", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyWithoutParentInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectWhereUniqueInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "RelatedTo", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyWithoutRelatedFromInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "domain", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectCreateOneWithoutPrismaResourcesInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Reactions", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutTaskInput", + "name": "ProjectWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectCreateWithoutPrismaResourcesInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "ChatRoom", + "name": "domain", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateOneWithoutTaskInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletion", + "name": "PrismaUsers", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateOneWithoutTaskInput", + "name": "UserCreateManyWithoutPrismaProjectsInput", "ofType": null }, "defaultValue": null @@ -257758,12 +111500,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "TaskUpdateWithoutRelatedToDataInput", + "name": "ProjectCreateWithoutPrismaUsersInput", "description": null, "fields": null, "inputFields": [ { - "name": "name", + "name": "domain", "description": null, "type": { "kind": "SCALAR", @@ -257773,171 +111515,301 @@ "defaultValue": null }, { - "name": "description", + "name": "PrismaResources", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ResourceCreateManyWithoutPrismaProjectInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectPreviousValues", + "description": null, + "fields": [ { - "name": "content", + "name": "id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "status", + "name": "domain", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "TaskStatus", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectSubscriptionPayload", + "description": null, + "fields": [ { - "name": "startDatePlaning", + "name": "mutation", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "endDatePlaning", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "OBJECT", + "name": "Project", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "startDate", + "name": "updatedFields", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "endDate", + "name": "previousValues", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "OBJECT", + "name": "ProjectPreviousValues", "ofType": null }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectSubscriptionWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": "Logical AND on all given filters.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectSubscriptionWhereInput", + "ofType": null + } + } + }, "defaultValue": null }, { - "name": "TaskProjects", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskUpdateManyWithoutTaskInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Members", - "description": null, + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutTaskInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Parent", - "description": null, + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateOneWithoutChildsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Childs", - "description": null, + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyWithoutParentInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "RelatedFrom", - "description": null, + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyWithoutRelatedToInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Timers", + "name": "node", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutTaskInput", + "name": "ProjectWhereInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectUpdateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Reactions", + "name": "domain", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutTaskInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ChatRoom", + "name": "PrismaResources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateOneWithoutTaskInput", + "name": "ResourceUpdateManyWithoutPrismaProjectInput", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletion", + "name": "PrismaUsers", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateOneWithoutTaskInput", + "name": "UserUpdateManyWithoutPrismaProjectsInput", "ofType": null }, "defaultValue": null @@ -257949,520 +111821,788 @@ }, { "kind": "INPUT_OBJECT", - "name": "TaskUpdateWithoutTaskProjectsDataInput", + "name": "ResourceUpdateManyWithoutPrismaProjectInput", "description": null, "fields": null, "inputFields": [ { - "name": "name", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "description", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserUpdateManyWithoutPrismaProjectsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "content", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "status", + "name": "disconnect", "description": null, "type": { - "kind": "ENUM", - "name": "TaskStatus", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectUpdateManyWithoutPrismaUsersInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "startDatePlaning", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "endDatePlaning", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectUpdateOneWithoutPrismaResourcesInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "startDate", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "ProjectWhereUniqueInput", "ofType": null }, "defaultValue": null }, { - "name": "endDate", + "name": "disconnect", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Boolean", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectUpdateWithoutPrismaResourcesDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "CreatedBy", + "name": "domain", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Members", + "name": "PrismaUsers", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutTaskInput", + "name": "UserUpdateManyWithoutPrismaProjectsInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectUpdateWithoutPrismaUsersDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Parent", + "name": "domain", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateOneWithoutChildsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Childs", + "name": "PrismaResources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyWithoutParentInput", + "name": "ResourceUpdateManyWithoutPrismaProjectInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectUpdateWithWhereUniqueWithoutPrismaUsersInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "RelatedFrom", + "name": "where", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyWithoutRelatedToInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectWhereUniqueInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "RelatedTo", + "name": "data", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyWithoutRelatedFromInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectUpdateWithoutPrismaUsersDataInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectUpsertWithWhereUniqueWithoutPrismaUsersInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Timers", + "name": "where", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutTaskInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectWhereUniqueInput", + "ofType": null + } }, "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ResetPasswordConnection", + "description": "A connection to a list of items.", + "fields": [ + { + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Reactions", - "description": null, + "name": "edges", + "description": "A list of edges.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutTaskInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResetPasswordEdge", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ChatRoom", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateOneWithoutTaskInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AggregateResetPassword", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ResetPasswordEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "node", + "description": "The item at the end of the edge.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResetPassword", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CodeChallengeCompletion", - "description": null, + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateOneWithoutTaskInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateWithoutTimersDataInput", + "kind": "ENUM", + "name": "ResetPasswordOrderByInput", "description": null, "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "name", + "name": "createdAt_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description", + "name": "createdAt_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "content", + "name": "updatedAt_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "status", + "name": "updatedAt_DESC", "description": null, - "type": { - "kind": "ENUM", - "name": "TaskStatus", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "startDatePlaning", + "name": "code_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "endDatePlaning", + "name": "code_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "startDate", + "name": "password_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "endDate", + "name": "password_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "validTill_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "TaskProjects", + "name": "validTill_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ResetPasswordPreviousValues", + "description": null, + "fields": [ + { + "name": "id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectTaskUpdateManyWithoutTaskInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "createdAt", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Members", + "name": "updatedAt", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutTaskInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Parent", + "name": "code", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateOneWithoutChildsInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Childs", + "name": "password", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyWithoutParentInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "RelatedFrom", + "name": "validTill", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyWithoutRelatedToInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ResetPasswordSubscriptionPayload", + "description": null, + "fields": [ { - "name": "RelatedTo", + "name": "mutation", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateManyWithoutRelatedFromInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Reactions", + "name": "node", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutTaskInput", + "kind": "OBJECT", + "name": "ResetPassword", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ChatRoom", + "name": "updatedFields", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateOneWithoutTaskInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CodeChallengeCompletion", + "name": "previousValues", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateOneWithoutTaskInput", + "kind": "OBJECT", + "name": "ResetPasswordPreviousValues", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "TaskUpdateWithWhereUniqueWithoutParentInput", + "name": "ResetPasswordSubscriptionWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "where", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResetPasswordSubscriptionWhereInput", + "ofType": null + } } }, "defaultValue": null }, { - "name": "data", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateWithoutParentDataInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResetPasswordSubscriptionWhereInput", + "ofType": null + } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateWithWhereUniqueWithoutRelatedFromInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResetPasswordSubscriptionWhereInput", + "ofType": null + } } }, "defaultValue": null }, { - "name": "data", - "description": null, + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateWithoutRelatedFromDataInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateWithWhereUniqueWithoutRelatedToInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", - "description": null, + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null }, { - "name": "data", - "description": null, + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskUpdateWithoutRelatedToDataInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskUpsertWithWhereUniqueWithoutParentInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "node", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereUniqueInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "ResetPasswordWhereInput", + "ofType": null }, "defaultValue": null } @@ -258473,63 +112613,49 @@ }, { "kind": "INPUT_OBJECT", - "name": "TaskUpsertWithWhereUniqueWithoutRelatedFromInput", + "name": "ResetPasswordWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "where", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResetPasswordWhereInput", + "ofType": null + } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaskUpsertWithWhereUniqueWithoutRelatedToInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResetPasswordWhereInput", + "ofType": null + } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { "kind": "LIST", "name": null, @@ -258538,24 +112664,13 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TeamWhereUniqueInput", + "name": "ResetPasswordWhereInput", "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamCreateWithoutChildsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { "name": "id", "description": null, @@ -258567,316 +112682,356 @@ "defaultValue": null }, { - "name": "name", - "description": null, + "name": "id_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } } }, "defaultValue": null }, { - "name": "status", - "description": null, + "name": "id_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "ENUM", - "name": "TeamStatus", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "oldID", - "description": null, + "name": "id_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "address", - "description": null, + "name": "id_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "website", - "description": null, + "name": "id_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "email", - "description": null, + "name": "id_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "phone", - "description": null, + "name": "id_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Parent", - "description": null, + "name": "id_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutChildsInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "id_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutTeamsCreatedInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Members", - "description": null, + "name": "id_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutTeamInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Projects", - "description": null, + "name": "id_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutTeamInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "OrderedProjects", - "description": null, + "name": "id_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCustomersInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Resource", + "name": "createdAt", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutTeamInput", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamCreateWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "createdAt_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "name", - "description": null, + "name": "createdAt_in", + "description": "All values that are contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } } }, "defaultValue": null }, { - "name": "status", - "description": null, + "name": "createdAt_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "ENUM", - "name": "TeamStatus", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "oldID", - "description": null, + "name": "createdAt_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "address", - "description": null, + "name": "createdAt_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "website", - "description": null, + "name": "createdAt_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "email", - "description": null, + "name": "createdAt_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "phone", + "name": "updatedAt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Parent", - "description": null, + "name": "updatedAt_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutChildsInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Childs", - "description": null, + "name": "updatedAt_in", + "description": "All values that are contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutParentInput", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "updatedAt_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "updatedAt_lt", + "description": "All values less than the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Members", - "description": null, + "name": "updatedAt_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutTeamInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Projects", - "description": null, + "name": "updatedAt_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutTeamInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "OrderedProjects", - "description": null, + "name": "updatedAt_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCustomersInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Resource", + "name": "code", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutTeamInput", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamCreateWithoutMembersInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "code_not", + "description": "All values that are not equal to given value.", "type": { "kind": "SCALAR", "name": "ID", @@ -258885,201 +113040,240 @@ "defaultValue": null }, { - "name": "name", - "description": null, + "name": "code_in", + "description": "All values that are contained in given list.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } } }, "defaultValue": null }, { - "name": "status", - "description": null, + "name": "code_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "ENUM", - "name": "TeamStatus", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "code_lt", + "description": "All values less than the given value.", + "type": { + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "oldID", - "description": null, + "name": "code_lte", + "description": "All values less than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "address", - "description": null, + "name": "code_gt", + "description": "All values greater than the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "website", - "description": null, + "name": "code_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "email", - "description": null, + "name": "code_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "phone", - "description": null, + "name": "code_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Parent", - "description": null, + "name": "code_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutChildsInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Childs", - "description": null, + "name": "code_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutParentInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "code_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutTeamsCreatedInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Projects", - "description": null, + "name": "code_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutTeamInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "OrderedProjects", + "name": "password", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCustomersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Resource", - "description": null, + "name": "password_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "password_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutTeamInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamCreateWithoutOrderedProjectsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", - "description": null, + "name": "password_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "password_lt", + "description": "All values less than the given value.", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "name", - "description": null, + "name": "password_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "status", - "description": null, + "name": "password_gt", + "description": "All values greater than the given value.", "type": { - "kind": "ENUM", - "name": "TeamStatus", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", - "description": null, + "name": "password_gte", + "description": "All values greater than or equal the given value.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "address", - "description": null, + "name": "password_contains", + "description": "All values containing the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -259088,8 +113282,8 @@ "defaultValue": null }, { - "name": "website", - "description": null, + "name": "password_not_contains", + "description": "All values not containing the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -259098,8 +113292,8 @@ "defaultValue": null }, { - "name": "email", - "description": null, + "name": "password_starts_with", + "description": "All values starting with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -259108,8 +113302,8 @@ "defaultValue": null }, { - "name": "phone", - "description": null, + "name": "password_not_starts_with", + "description": "All values not starting with the given string.", "type": { "kind": "SCALAR", "name": "String", @@ -259118,66 +113312,128 @@ "defaultValue": null }, { - "name": "Parent", - "description": null, + "name": "password_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutChildsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Childs", + "name": "password_not_ends_with", + "description": "All values not ending with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "validTill", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutParentInput", + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "validTill_not", + "description": "All values that are not equal to given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "validTill_in", + "description": "All values that are contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "validTill_not_in", + "description": "All values that are not contained in given list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "validTill_lt", + "description": "All values less than the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "validTill_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutTeamsCreatedInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Members", - "description": null, + "name": "validTill_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutTeamInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Projects", - "description": null, + "name": "validTill_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutTeamInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Resource", + "name": "User", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutTeamInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "UserWhereInput", + "ofType": null }, "defaultValue": null } @@ -259188,12 +113444,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "TeamCreateWithoutParentInput", + "name": "ResetPasswordUpdateInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "code", "description": null, "type": { "kind": "SCALAR", @@ -259203,41 +113459,7 @@ "defaultValue": null }, { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "TeamStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address", + "name": "password", "description": null, "type": { "kind": "SCALAR", @@ -259247,98 +113469,147 @@ "defaultValue": null }, { - "name": "website", + "name": "validTill", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "email", + "name": "User", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResetPasswordWhereUniqueInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "phone", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Childs", + "name": "code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutParentInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceCreateManyWithoutCommentTargetInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "CreatedBy", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutTeamsCreatedInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceCreateOneWithoutCommentsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Members", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutTeamInput", + "name": "ResourceWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceCreateOneWithoutTagsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Projects", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutTeamInput", + "name": "ResourceWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceCreateOneWithoutVotesInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "OrderedProjects", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCustomersInput", + "name": "ResourceWhereUniqueInput", "ofType": null }, "defaultValue": null - }, - { - "name": "Resource", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutTeamInput", - "ofType": null - } - }, - "defaultValue": null } ], "interfaces": null, @@ -259347,12 +113618,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "TeamCreateWithoutProjectsInput", + "name": "ResourceCreateWithoutChildsInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "code", "description": null, "type": { "kind": "SCALAR", @@ -259362,41 +113633,17 @@ "defaultValue": null }, { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "status", + "name": "type", "description": null, "type": { "kind": "ENUM", - "name": "TeamStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", + "name": "ResourceType", "ofType": null }, "defaultValue": null }, { - "name": "address", + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -259406,7 +113653,7 @@ "defaultValue": null }, { - "name": "website", + "name": "longtitle", "description": null, "type": { "kind": "SCALAR", @@ -259416,17 +113663,17 @@ "defaultValue": null }, { - "name": "email", + "name": "content", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "phone", + "name": "contentText", "description": null, "type": { "kind": "SCALAR", @@ -259436,116 +113683,77 @@ "defaultValue": null }, { - "name": "Parent", + "name": "published", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutChildsInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Childs", + "name": "deleted", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutParentInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "hidemenu", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutTeamsCreatedInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Members", + "name": "searchable", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutTeamInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "OrderedProjects", + "name": "uri", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCustomersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Resource", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateOneWithoutTeamInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamCreateWithoutResourceInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", + "name": "isfolder", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "status", + "name": "rating", "description": null, "type": { - "kind": "ENUM", - "name": "TeamStatus", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "positiveVotesCount", "description": null, "type": { "kind": "SCALAR", @@ -259555,101 +113763,105 @@ "defaultValue": null }, { - "name": "address", + "name": "negativeVotesCount", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "website", + "name": "neutralVotesCount", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "email", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutResourcesInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "phone", + "name": "Parent", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ResourceCreateOneWithoutChildsInput", "ofType": null }, "defaultValue": null }, { - "name": "Parent", + "name": "Image", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutChildsInput", + "name": "FileCreateOneWithoutImageResourceInput", "ofType": null }, "defaultValue": null }, { - "name": "Childs", + "name": "PrismaProject", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutParentInput", + "name": "ProjectCreateOneWithoutPrismaResourcesInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "CommentTarget", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutTeamsCreatedInput", + "name": "ResourceCreateOneWithoutCommentsInput", "ofType": null }, "defaultValue": null }, { - "name": "Members", + "name": "Comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutTeamInput", + "name": "ResourceCreateManyWithoutCommentTargetInput", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "Votes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutTeamInput", + "name": "VoteCreateManyWithoutResourceInput", "ofType": null }, "defaultValue": null }, { - "name": "OrderedProjects", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCustomersInput", + "name": "ResourceTagCreateManyWithoutResourceInput", "ofType": null }, "defaultValue": null @@ -259661,79 +113873,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutUserInput", + "name": "UserCreateOneWithoutResourcesInput", "description": null, "fields": null, "inputFields": [ { "name": "connect", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateWithoutTeamInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "TeamMemberStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "User", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutTeamsInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "name": "UserWhereUniqueInput", "ofType": null }, "defaultValue": null @@ -259745,50 +113894,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateWithoutUserInput", + "name": "ResourceCreateOneWithoutChildsInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "TeamMemberStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Team", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateOneWithoutMembersInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "CreatedBy", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "name": "ResourceWhereUniqueInput", "ofType": null }, "defaultValue": null @@ -259800,16 +113915,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyMutationInput", + "name": "FileCreateOneWithoutImageResourceInput", "description": null, "fields": null, "inputFields": [ { - "name": "status", + "name": "connect", "description": null, "type": { - "kind": "ENUM", - "name": "TeamMemberStatus", + "kind": "INPUT_OBJECT", + "name": "FileWhereUniqueInput", "ofType": null }, "defaultValue": null @@ -259821,7 +113936,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutUserInput", + "name": "VoteCreateManyWithoutResourceInput", "description": null, "fields": null, "inputFields": [ @@ -259836,69 +113951,26 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TeamMemberWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updateMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithWhereNestedInput", + "name": "VoteWhereUniqueInput", "ofType": null } } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceTagCreateManyWithoutResourceInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "deleteMany", + "name": "connect", "description": null, "type": { "kind": "LIST", @@ -259908,7 +113980,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TeamMemberScalarWhereInput", + "name": "ResourceTagWhereUniqueInput", "ofType": null } } @@ -259922,222 +113994,112 @@ }, { "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateWithoutTeamDataInput", + "name": "ResourceCreateWithoutCommentsInput", "description": null, "fields": null, "inputFields": [ { - "name": "status", + "name": "code", "description": null, "type": { - "kind": "ENUM", - "name": "TeamMemberStatus", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "User", + "name": "type", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutTeamsInput", + "kind": "ENUM", + "name": "ResourceType", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateWithoutUserDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "status", + "name": "longtitle", "description": null, "type": { - "kind": "ENUM", - "name": "TeamMemberStatus", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Team", + "name": "content", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneRequiredWithoutMembersInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "contentText", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateWithWhereUniqueWithoutTeamInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null }, { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateWithoutTeamDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateWithWhereUniqueWithoutUserInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", + "name": "published", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null }, { - "name": "data", + "name": "deleted", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateWithoutUserDataInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpsertWithWhereUniqueWithoutTeamInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "hidemenu", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpsertWithWhereUniqueWithoutUserInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "searchable", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", + "name": "uri", "description": null, "type": { "kind": "SCALAR", @@ -260147,62 +114109,66 @@ "defaultValue": null }, { - "name": "status", + "name": "isfolder", "description": null, "type": { - "kind": "ENUM", - "name": "TeamStatus", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "rating", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "address", + "name": "positiveVotesCount", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "website", + "name": "negativeVotesCount", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "email", + "name": "neutralVotesCount", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "phone", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutResourcesInput", + "ofType": null + } }, "defaultValue": null }, @@ -260211,7 +114177,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutChildsInput", + "name": "ResourceCreateOneWithoutChildsInput", "ofType": null }, "defaultValue": null @@ -260221,57 +114187,57 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutParentInput", + "name": "ResourceCreateManyWithoutParentInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "Image", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutTeamsCreatedInput", + "name": "FileCreateOneWithoutImageResourceInput", "ofType": null }, "defaultValue": null }, { - "name": "Members", + "name": "PrismaProject", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutTeamInput", + "name": "ProjectCreateOneWithoutPrismaResourcesInput", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "CommentTarget", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutTeamInput", + "name": "ResourceCreateOneWithoutCommentsInput", "ofType": null }, "defaultValue": null }, { - "name": "OrderedProjects", + "name": "Votes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCustomersInput", + "name": "VoteCreateManyWithoutResourceInput", "ofType": null }, "defaultValue": null }, { - "name": "Resource", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneRequiredWithoutTeamInput", + "name": "ResourceTagCreateManyWithoutResourceInput", "ofType": null }, "defaultValue": null @@ -260283,42 +114249,61 @@ }, { "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyMutationInput", + "name": "ResourceCreateManyWithoutParentInput", "description": null, "fields": null, "inputFields": [ { - "name": "name", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceCreateWithoutCommentTargetInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "status", + "name": "code", "description": null, "type": { - "kind": "ENUM", - "name": "TeamStatus", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "type", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "ResourceType", "ofType": null }, "defaultValue": null }, { - "name": "address", + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -260328,7 +114313,7 @@ "defaultValue": null }, { - "name": "website", + "name": "longtitle", "description": null, "type": { "kind": "SCALAR", @@ -260338,17 +114323,17 @@ "defaultValue": null }, { - "name": "email", + "name": "content", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "phone", + "name": "contentText", "description": null, "type": { "kind": "SCALAR", @@ -260356,141 +114341,79 @@ "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "published", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null }, { - "name": "set", + "name": "deleted", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null }, { - "name": "disconnect", + "name": "hidemenu", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null }, { - "name": "updateMany", + "name": "searchable", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithWhereNestedInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null }, { - "name": "deleteMany", + "name": "uri", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamScalarWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateWithoutChildsDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", + "name": "isfolder", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "status", + "name": "rating", "description": null, "type": { - "kind": "ENUM", - "name": "TeamStatus", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "positiveVotesCount", "description": null, "type": { "kind": "SCALAR", @@ -260500,101 +114423,105 @@ "defaultValue": null }, { - "name": "address", + "name": "negativeVotesCount", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "website", + "name": "neutralVotesCount", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "email", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutResourcesInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "phone", + "name": "Parent", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ResourceCreateOneWithoutChildsInput", "ofType": null }, "defaultValue": null }, { - "name": "Parent", + "name": "Childs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutChildsInput", + "name": "ResourceCreateManyWithoutParentInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "Image", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutTeamsCreatedInput", + "name": "FileCreateOneWithoutImageResourceInput", "ofType": null }, "defaultValue": null }, { - "name": "Members", + "name": "PrismaProject", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutTeamInput", + "name": "ProjectCreateOneWithoutPrismaResourcesInput", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "Comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutTeamInput", + "name": "ResourceCreateManyWithoutCommentTargetInput", "ofType": null }, "defaultValue": null }, { - "name": "OrderedProjects", + "name": "Votes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCustomersInput", + "name": "VoteCreateManyWithoutResourceInput", "ofType": null }, "defaultValue": null }, { - "name": "Resource", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneRequiredWithoutTeamInput", + "name": "ResourceTagCreateManyWithoutResourceInput", "ofType": null }, "defaultValue": null @@ -260606,42 +114533,32 @@ }, { "kind": "INPUT_OBJECT", - "name": "TeamUpdateWithoutCreatedByDataInput", + "name": "ResourceCreateWithoutCreatedByInput", "description": null, "fields": null, "inputFields": [ { - "name": "name", + "name": "code", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "status", + "name": "type", "description": null, "type": { "kind": "ENUM", - "name": "TeamStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", + "name": "ResourceType", "ofType": null }, "defaultValue": null }, { - "name": "address", + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -260651,7 +114568,7 @@ "defaultValue": null }, { - "name": "website", + "name": "longtitle", "description": null, "type": { "kind": "SCALAR", @@ -260661,17 +114578,17 @@ "defaultValue": null }, { - "name": "email", + "name": "content", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "phone", + "name": "contentText", "description": null, "type": { "kind": "SCALAR", @@ -260681,98 +114598,77 @@ "defaultValue": null }, { - "name": "Parent", + "name": "published", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutChildsInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Childs", + "name": "deleted", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutParentInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Members", + "name": "hidemenu", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutTeamInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "searchable", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutTeamInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "OrderedProjects", + "name": "uri", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCustomersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Resource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneRequiredWithoutTeamInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateWithoutMembersDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", + "name": "isfolder", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "status", + "name": "rating", "description": null, "type": { - "kind": "ENUM", - "name": "TeamStatus", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "positiveVotesCount", "description": null, "type": { "kind": "SCALAR", @@ -260782,101 +114678,101 @@ "defaultValue": null }, { - "name": "address", + "name": "negativeVotesCount", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "website", + "name": "neutralVotesCount", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "email", + "name": "Parent", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ResourceCreateOneWithoutChildsInput", "ofType": null }, "defaultValue": null }, { - "name": "phone", + "name": "Childs", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ResourceCreateManyWithoutParentInput", "ofType": null }, "defaultValue": null }, { - "name": "Parent", + "name": "Image", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutChildsInput", + "name": "FileCreateOneWithoutImageResourceInput", "ofType": null }, "defaultValue": null }, { - "name": "Childs", + "name": "PrismaProject", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutParentInput", + "name": "ProjectCreateOneWithoutPrismaResourcesInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "CommentTarget", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutTeamsCreatedInput", + "name": "ResourceCreateOneWithoutCommentsInput", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "Comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutTeamInput", + "name": "ResourceCreateManyWithoutCommentTargetInput", "ofType": null }, "defaultValue": null }, { - "name": "OrderedProjects", + "name": "Votes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCustomersInput", + "name": "VoteCreateManyWithoutResourceInput", "ofType": null }, "defaultValue": null }, { - "name": "Resource", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneRequiredWithoutTeamInput", + "name": "ResourceTagCreateManyWithoutResourceInput", "ofType": null }, "defaultValue": null @@ -260888,42 +114784,32 @@ }, { "kind": "INPUT_OBJECT", - "name": "TeamUpdateWithoutOrderedProjectsDataInput", + "name": "ResourceCreateWithoutImageInput", "description": null, "fields": null, "inputFields": [ { - "name": "name", + "name": "code", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "status", + "name": "type", "description": null, "type": { "kind": "ENUM", - "name": "TeamStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", + "name": "ResourceType", "ofType": null }, "defaultValue": null }, { - "name": "address", + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -260933,7 +114819,7 @@ "defaultValue": null }, { - "name": "website", + "name": "longtitle", "description": null, "type": { "kind": "SCALAR", @@ -260943,17 +114829,17 @@ "defaultValue": null }, { - "name": "email", + "name": "content", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "phone", + "name": "contentText", "description": null, "type": { "kind": "SCALAR", @@ -260963,98 +114849,77 @@ "defaultValue": null }, { - "name": "Parent", + "name": "published", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutChildsInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Childs", + "name": "deleted", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutParentInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "hidemenu", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutTeamsCreatedInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Members", + "name": "searchable", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutTeamInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "uri", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutTeamInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Resource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneRequiredWithoutTeamInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateWithoutParentDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", + "name": "isfolder", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "status", + "name": "rating", "description": null, "type": { - "kind": "ENUM", - "name": "TeamStatus", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "positiveVotesCount", "description": null, "type": { "kind": "SCALAR", @@ -261064,41 +114929,45 @@ "defaultValue": null }, { - "name": "address", + "name": "negativeVotesCount", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "website", + "name": "neutralVotesCount", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "email", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutResourcesInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "phone", + "name": "Parent", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ResourceCreateOneWithoutChildsInput", "ofType": null }, "defaultValue": null @@ -261108,57 +114977,57 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutParentInput", + "name": "ResourceCreateManyWithoutParentInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "PrismaProject", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutTeamsCreatedInput", + "name": "ProjectCreateOneWithoutPrismaResourcesInput", "ofType": null }, "defaultValue": null }, { - "name": "Members", + "name": "CommentTarget", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutTeamInput", + "name": "ResourceCreateOneWithoutCommentsInput", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "Comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutTeamInput", + "name": "ResourceCreateManyWithoutCommentTargetInput", "ofType": null }, "defaultValue": null }, { - "name": "OrderedProjects", + "name": "Votes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCustomersInput", + "name": "VoteCreateManyWithoutResourceInput", "ofType": null }, "defaultValue": null }, { - "name": "Resource", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneRequiredWithoutTeamInput", + "name": "ResourceTagCreateManyWithoutResourceInput", "ofType": null }, "defaultValue": null @@ -261170,42 +115039,32 @@ }, { "kind": "INPUT_OBJECT", - "name": "TeamUpdateWithoutProjectsDataInput", + "name": "ResourceCreateWithoutParentInput", "description": null, "fields": null, "inputFields": [ { - "name": "name", + "name": "code", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "status", + "name": "type", "description": null, "type": { "kind": "ENUM", - "name": "TeamStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "oldID", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", + "name": "ResourceType", "ofType": null }, "defaultValue": null }, { - "name": "address", + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -261215,7 +115074,7 @@ "defaultValue": null }, { - "name": "website", + "name": "longtitle", "description": null, "type": { "kind": "SCALAR", @@ -261225,17 +115084,17 @@ "defaultValue": null }, { - "name": "email", + "name": "content", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "phone", + "name": "contentText", "description": null, "type": { "kind": "SCALAR", @@ -261245,98 +115104,77 @@ "defaultValue": null }, { - "name": "Parent", + "name": "published", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutChildsInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Childs", + "name": "deleted", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutParentInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "hidemenu", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutTeamsCreatedInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Members", + "name": "searchable", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutTeamInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "OrderedProjects", + "name": "uri", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCustomersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Resource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneRequiredWithoutTeamInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateWithoutResourceDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", + "name": "isfolder", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "status", + "name": "rating", "description": null, "type": { - "kind": "ENUM", - "name": "TeamStatus", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "positiveVotesCount", "description": null, "type": { "kind": "SCALAR", @@ -261346,101 +115184,105 @@ "defaultValue": null }, { - "name": "address", + "name": "negativeVotesCount", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "website", + "name": "neutralVotesCount", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "email", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutResourcesInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "phone", + "name": "Childs", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ResourceCreateManyWithoutParentInput", "ofType": null }, "defaultValue": null }, { - "name": "Parent", + "name": "Image", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamUpdateOneWithoutChildsInput", + "name": "FileCreateOneWithoutImageResourceInput", "ofType": null }, "defaultValue": null }, { - "name": "Childs", + "name": "PrismaProject", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutParentInput", + "name": "ProjectCreateOneWithoutPrismaResourcesInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "CommentTarget", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutTeamsCreatedInput", + "name": "ResourceCreateOneWithoutCommentsInput", "ofType": null }, "defaultValue": null }, { - "name": "Members", + "name": "Comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutTeamInput", + "name": "ResourceCreateManyWithoutCommentTargetInput", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "Votes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutTeamInput", + "name": "VoteCreateManyWithoutResourceInput", "ofType": null }, "defaultValue": null }, { - "name": "OrderedProjects", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCustomersInput", + "name": "ResourceTagCreateManyWithoutResourceInput", "ofType": null }, "defaultValue": null @@ -261452,312 +115294,166 @@ }, { "kind": "INPUT_OBJECT", - "name": "TeamUpdateWithWhereUniqueNestedInput", + "name": "ResourceCreateWithoutPrismaProjectInput", "description": null, "fields": null, "inputFields": [ { - "name": "where", + "name": "code", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateWithWhereUniqueWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", + "name": "type", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereUniqueInput", - "ofType": null - } + "kind": "ENUM", + "name": "ResourceType", + "ofType": null }, "defaultValue": null }, { - "name": "data", + "name": "name", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateWithoutCreatedByDataInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateWithWhereUniqueWithoutOrderedProjectsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "longtitle", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "data", + "name": "content", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateWithoutOrderedProjectsDataInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Json", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateWithWhereUniqueWithoutParentInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "contentText", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "data", + "name": "published", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateWithoutParentDataInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamUpsertWithWhereUniqueNestedInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "deleted", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamUpsertWithWhereUniqueWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "hidemenu", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamUpsertWithWhereUniqueWithoutOrderedProjectsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "searchable", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamUpsertWithWhereUniqueWithoutParentInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "uri", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyCreateWithoutUserTechnologiesInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "isfolder", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "rating", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "components", + "name": "positiveVotesCount", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "contentText", + "name": "negativeVotesCount", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "site_url", + "name": "neutralVotesCount", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null @@ -261766,89 +115462,82 @@ "name": "CreatedBy", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutResourcesInput", + "ofType": null + } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonCreateWithoutCommentsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "Parent", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "ResourceCreateOneWithoutChildsInput", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "Childs", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ResourceCreateManyWithoutParentInput", "ofType": null }, "defaultValue": null }, { - "name": "components", + "name": "Image", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", + "kind": "INPUT_OBJECT", + "name": "FileCreateOneWithoutImageResourceInput", "ofType": null }, "defaultValue": null }, { - "name": "contentText", + "name": "CommentTarget", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ResourceCreateOneWithoutCommentsInput", "ofType": null }, "defaultValue": null }, { - "name": "Technology", + "name": "Comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TechnologyCreateOneInput", + "name": "ResourceCreateManyWithoutCommentTargetInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "Votes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "name": "VoteCreateManyWithoutResourceInput", "ofType": null }, "defaultValue": null }, { - "name": "Users", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserCreateManyWithoutLessonInput", + "name": "ResourceTagCreateManyWithoutResourceInput", "ofType": null }, "defaultValue": null @@ -261860,12 +115549,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "TechnologyLessonCreateWithoutUsersInput", + "name": "ResourceCreateWithoutTagsInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "code", "description": null, "type": { "kind": "SCALAR", @@ -261875,27 +115564,27 @@ "defaultValue": null }, { - "name": "name", + "name": "type", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "ResourceType", "ofType": null }, "defaultValue": null }, { - "name": "components", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "contentText", + "name": "longtitle", "description": null, "type": { "kind": "SCALAR", @@ -261905,99 +115594,77 @@ "defaultValue": null }, { - "name": "Technology", + "name": "content", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TechnologyCreateOneInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "contentText", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Comments", + "name": "published", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CommentCreateManyWithoutTechnologyLessonInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", + "name": "deleted", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "components", + "name": "hidemenu", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "contentText", + "name": "searchable", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUpdateOneWithoutCommentsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "uri", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonWhereUniqueInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "disconnect", + "name": "isfolder", "description": null, "type": { "kind": "SCALAR", @@ -262005,54 +115672,43 @@ "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUpdateWithoutCommentsDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", + "name": "rating", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "components", + "name": "positiveVotesCount", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "contentText", + "name": "negativeVotesCount", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Technology", + "name": "neutralVotesCount", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TechnologyUpdateOneInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null @@ -262061,89 +115717,82 @@ "name": "CreatedBy", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutResourcesInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "Users", + "name": "Parent", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserUpdateManyWithoutLessonInput", + "name": "ResourceCreateOneWithoutChildsInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUpdateWithoutUsersDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", + "name": "Childs", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ResourceCreateManyWithoutParentInput", "ofType": null }, "defaultValue": null }, { - "name": "components", + "name": "Image", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", + "kind": "INPUT_OBJECT", + "name": "FileCreateOneWithoutImageResourceInput", "ofType": null }, "defaultValue": null }, { - "name": "contentText", + "name": "PrismaProject", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ProjectCreateOneWithoutPrismaResourcesInput", "ofType": null }, "defaultValue": null }, { - "name": "Technology", + "name": "CommentTarget", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TechnologyUpdateOneInput", + "name": "ResourceCreateOneWithoutCommentsInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "Comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "name": "ResourceCreateManyWithoutCommentTargetInput", "ofType": null }, "defaultValue": null }, { - "name": "Comments", + "name": "Votes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CommentUpdateManyWithoutTechnologyLessonInput", + "name": "VoteCreateManyWithoutResourceInput", "ofType": null }, "defaultValue": null @@ -262155,12 +115804,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserCreateWithoutLessonInput", + "name": "ResourceCreateWithoutVotesInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "code", "description": null, "type": { "kind": "SCALAR", @@ -262170,350 +115819,235 @@ "defaultValue": null }, { - "name": "status", + "name": "type", "description": null, "type": { "kind": "ENUM", - "name": "TechnologyLessonUserStatus", + "name": "ResourceType", "ofType": null }, "defaultValue": null }, { - "name": "completedAt", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "longtitle", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "status", + "name": "content", "description": null, "type": { - "kind": "ENUM", - "name": "TechnologyLessonUserStatus", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "completedAt", + "name": "contentText", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserUpdateWithoutLessonDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "status", + "name": "published", "description": null, "type": { - "kind": "ENUM", - "name": "TechnologyLessonUserStatus", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "completedAt", + "name": "deleted", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "hidemenu", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserUpdateWithWhereUniqueWithoutLessonInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null }, { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserUpdateWithoutLessonDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserUpsertWithWhereUniqueWithoutLessonInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TechnologyLessonUserWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyUpdateDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", + "name": "searchable", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "components", + "name": "uri", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "contentText", + "name": "isfolder", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "site_url", + "name": "rating", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "positiveVotesCount", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "UserTechnologies", + "name": "negativeVotesCount", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyUpdateManyWithoutTechnologyInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", + "name": "neutralVotesCount", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "components", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutResourcesInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "contentText", + "name": "Parent", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ResourceCreateOneWithoutChildsInput", "ofType": null }, "defaultValue": null }, { - "name": "site_url", + "name": "Childs", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ResourceCreateManyWithoutParentInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TechnologyUpdateWithoutUserTechnologiesDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", + "name": "Image", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "FileCreateOneWithoutImageResourceInput", "ofType": null }, "defaultValue": null }, { - "name": "components", + "name": "PrismaProject", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", + "kind": "INPUT_OBJECT", + "name": "ProjectCreateOneWithoutPrismaResourcesInput", "ofType": null }, "defaultValue": null }, { - "name": "contentText", + "name": "CommentTarget", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ResourceCreateOneWithoutCommentsInput", "ofType": null }, "defaultValue": null }, { - "name": "site_url", + "name": "Comments", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ResourceCreateManyWithoutCommentTargetInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "name": "ResourceTagCreateManyWithoutResourceInput", "ofType": null }, "defaultValue": null @@ -262524,349 +116058,477 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "TemplateCreateWithoutPrismaProjectInput", + "kind": "OBJECT", + "name": "ResourcePreviousValues", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { "name": "id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "externalKey", + "name": "code", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "ID", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "createdAt", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description", + "name": "updatedAt", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "component", + "name": "type", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "ResourceType", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "props", + "name": "name", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "components", + "name": "longtitle", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "vars", + "name": "content", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "Json", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "rank", + "name": "contentText", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Parent", + "name": "published", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TemplateCreateOneInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "deleted", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Project", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateOneInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TemplateUpdateDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "externalKey", + "name": "hidemenu", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "searchable", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description", + "name": "uri", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "component", + "name": "isfolder", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "props", + "name": "rating", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Json", + "name": "Float", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "components", + "name": "positiveVotesCount", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Json", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "vars", + "name": "negativeVotesCount", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Json", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "rank", + "name": "neutralVotesCount", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "Int", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ResourceSubscriptionPayload", + "description": null, + "fields": [ { - "name": "Parent", + "name": "mutation", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TemplateUpdateOneInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "node", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "kind": "OBJECT", + "name": "Resource", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Project", + "name": "updatedFields", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "PrismaProject", + "name": "previousValues", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneWithoutPrismaTemplatesInput", + "kind": "OBJECT", + "name": "ResourcePreviousValues", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "TemplateUpdateManyMutationInput", + "name": "ResourceSubscriptionWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "externalKey", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "name", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "component", - "description": null, + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "props", - "description": null, + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "components", - "description": null, + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "vars", - "description": null, + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "rank", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "ResourceWhereInput", "ofType": null }, "defaultValue": null @@ -262878,117 +116540,208 @@ }, { "kind": "INPUT_OBJECT", - "name": "TemplateUpdateWithoutPrismaProjectDataInput", + "name": "ResourceTagCreateInput", "description": null, "fields": null, "inputFields": [ { - "name": "externalKey", + "name": "status", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "ENUM", + "name": "TagStatus", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "Resource", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceCreateOneWithoutTagsInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "description", + "name": "Tag", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TagCreateOneWithoutResourcesInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "component", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutResourceTagsInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TagCreateOneWithoutResourcesInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "props", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", + "kind": "INPUT_OBJECT", + "name": "TagWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutResourceTagsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "components", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceTagCreateManyWithoutCreatedByInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "vars", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceTagWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceTagCreateManyWithoutTagInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "rank", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceTagWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceTagCreateWithoutCreatedByInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Parent", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TemplateUpdateOneInput", + "kind": "ENUM", + "name": "TagStatus", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "Resource", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceCreateOneWithoutTagsInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "Project", + "name": "Tag", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateOneInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TagCreateOneWithoutResourcesInput", + "ofType": null + } }, "defaultValue": null } @@ -262999,33 +116752,43 @@ }, { "kind": "INPUT_OBJECT", - "name": "TemplateUpdateWithWhereUniqueWithoutPrismaProjectInput", + "name": "ResourceTagCreateWithoutResourceInput", "description": null, "fields": null, "inputFields": [ { - "name": "where", + "name": "status", + "description": null, + "type": { + "kind": "ENUM", + "name": "TagStatus", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Tag", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TemplateWhereUniqueInput", + "name": "TagCreateOneWithoutResourcesInput", "ofType": null } }, "defaultValue": null }, { - "name": "data", + "name": "CreatedBy", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TemplateUpdateWithoutPrismaProjectDataInput", + "name": "UserCreateOneWithoutResourceTagsInput", "ofType": null } }, @@ -263038,19 +116801,43 @@ }, { "kind": "INPUT_OBJECT", - "name": "TemplateUpsertWithWhereUniqueWithoutPrismaProjectInput", + "name": "ResourceTagCreateWithoutTagInput", "description": null, "fields": null, "inputFields": [ { - "name": "where", + "name": "status", + "description": null, + "type": { + "kind": "ENUM", + "name": "TagStatus", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Resource", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceCreateOneWithoutTagsInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "CreatedBy", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TemplateWhereUniqueInput", + "name": "UserCreateOneWithoutResourceTagsInput", "ofType": null } }, @@ -263063,7 +116850,7 @@ }, { "kind": "OBJECT", - "name": "TestPreviousValues", + "name": "ResourceTagPreviousValues", "description": null, "fields": [ { @@ -263115,49 +116902,17 @@ "deprecationReason": null }, { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "text", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "quantity", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date", + "name": "status", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TagStatus", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -263170,7 +116925,7 @@ }, { "kind": "OBJECT", - "name": "TestSubscriptionPayload", + "name": "ResourceTagSubscriptionPayload", "description": null, "fields": [ { @@ -263195,7 +116950,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "Test", + "name": "ResourceTag", "ofType": null }, "isDeprecated": false, @@ -263227,7 +116982,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "TestPreviousValues", + "name": "ResourceTagPreviousValues", "ofType": null }, "isDeprecated": false, @@ -263241,7 +116996,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "TestSubscriptionWhereInput", + "name": "ResourceTagSubscriptionWhereInput", "description": null, "fields": null, "inputFields": [ @@ -263256,7 +117011,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TestSubscriptionWhereInput", + "name": "ResourceTagSubscriptionWhereInput", "ofType": null } } @@ -263274,7 +117029,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TestSubscriptionWhereInput", + "name": "ResourceTagSubscriptionWhereInput", "ofType": null } } @@ -263292,7 +117047,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TestSubscriptionWhereInput", + "name": "ResourceTagSubscriptionWhereInput", "ofType": null } } @@ -263368,7 +117123,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TestWhereInput", + "name": "ResourceTagWhereInput", "ofType": null }, "defaultValue": null @@ -263380,46 +117135,46 @@ }, { "kind": "INPUT_OBJECT", - "name": "TestUpdateManyMutationInput", + "name": "ResourceTagUpdateInput", "description": null, "fields": null, "inputFields": [ { - "name": "name", + "name": "status", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "TagStatus", "ofType": null }, "defaultValue": null }, { - "name": "text", + "name": "Resource", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ResourceUpdateOneWithoutTagsInput", "ofType": null }, "defaultValue": null }, { - "name": "quantity", + "name": "Tag", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "TagUpdateOneWithoutResourcesInput", "ofType": null }, "defaultValue": null }, { - "name": "date", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutResourceTagsInput", "ofType": null }, "defaultValue": null @@ -263431,7 +117186,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutCreatedByInput", + "name": "ResourceUpdateOneWithoutTagsInput", "description": null, "fields": null, "inputFields": [ @@ -263439,17 +117194,9 @@ "name": "connect", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TimerWhereUniqueInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "ResourceWhereUniqueInput", + "ofType": null }, "defaultValue": null } @@ -263460,43 +117207,19 @@ }, { "kind": "INPUT_OBJECT", - "name": "TimerCreateWithoutCreatedByInput", + "name": "TagUpdateOneWithoutResourcesInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stopedAt", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "TagWhereUniqueInput", "ofType": null }, "defaultValue": null - }, - { - "name": "Task", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaskCreateOneWithoutTimersInput", - "ofType": null - } - }, - "defaultValue": null } ], "interfaces": null, @@ -263505,36 +117228,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "TimerCreateWithoutTaskInput", + "name": "UserUpdateOneWithoutResourceTagsInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stopedAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutTimersInput", + "name": "UserWhereUniqueInput", "ofType": null }, "defaultValue": null @@ -263546,17 +117249,43 @@ }, { "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyMutationInput", + "name": "ResourceTagUpdateManyWithoutCreatedByInput", "description": null, "fields": null, "inputFields": [ { - "name": "stopedAt", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceTagWhereUniqueInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "disconnect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceTagWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null } @@ -263567,7 +117296,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutCreatedByInput", + "name": "ResourceTagUpdateManyWithoutResourceInput", "description": null, "fields": null, "inputFields": [ @@ -263582,7 +117311,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TimerWhereUniqueInput", + "name": "ResourceTagWhereUniqueInput", "ofType": null } } @@ -263590,7 +117319,7 @@ "defaultValue": null }, { - "name": "set", + "name": "disconnect", "description": null, "type": { "kind": "LIST", @@ -263600,15 +117329,26 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TimerWhereUniqueInput", + "name": "ResourceTagWhereUniqueInput", "ofType": null } } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceTagUpdateManyWithoutTagInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "disconnect", + "name": "connect", "description": null, "type": { "kind": "LIST", @@ -263618,7 +117358,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TimerWhereUniqueInput", + "name": "ResourceTagWhereUniqueInput", "ofType": null } } @@ -263626,7 +117366,7 @@ "defaultValue": null }, { - "name": "updateMany", + "name": "disconnect", "description": null, "type": { "kind": "LIST", @@ -263636,28 +117376,51 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithWhereNestedInput", + "name": "ResourceTagWhereUniqueInput", "ofType": null } } }, "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceTagUpdateWithoutCreatedByDataInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "status", + "description": null, + "type": { + "kind": "ENUM", + "name": "TagStatus", + "ofType": null + }, + "defaultValue": null }, { - "name": "deleteMany", + "name": "Resource", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TimerScalarWhereInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "ResourceUpdateOneWithoutTagsInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Tag", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TagUpdateOneWithoutResourcesInput", + "ofType": null }, "defaultValue": null } @@ -263668,26 +117431,36 @@ }, { "kind": "INPUT_OBJECT", - "name": "TimerUpdateWithoutCreatedByDataInput", + "name": "ResourceTagUpdateWithoutResourceDataInput", "description": null, "fields": null, "inputFields": [ { - "name": "stopedAt", + "name": "status", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "ENUM", + "name": "TagStatus", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Tag", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TagUpdateOneWithoutResourcesInput", "ofType": null }, "defaultValue": null }, { - "name": "Task", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskUpdateOneRequiredWithoutTimersInput", + "name": "UserUpdateOneWithoutResourceTagsInput", "ofType": null }, "defaultValue": null @@ -263699,16 +117472,26 @@ }, { "kind": "INPUT_OBJECT", - "name": "TimerUpdateWithoutTaskDataInput", + "name": "ResourceTagUpdateWithoutTagDataInput", "description": null, "fields": null, "inputFields": [ { - "name": "stopedAt", + "name": "status", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "ENUM", + "name": "TagStatus", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Resource", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceUpdateOneWithoutTagsInput", "ofType": null }, "defaultValue": null @@ -263718,7 +117501,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutTimersInput", + "name": "UserUpdateOneWithoutResourceTagsInput", "ofType": null }, "defaultValue": null @@ -263730,7 +117513,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "TimerUpdateWithWhereUniqueWithoutCreatedByInput", + "name": "ResourceTagUpdateWithWhereUniqueWithoutCreatedByInput", "description": null, "fields": null, "inputFields": [ @@ -263742,7 +117525,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TimerWhereUniqueInput", + "name": "ResourceTagWhereUniqueInput", "ofType": null } }, @@ -263756,7 +117539,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TimerUpdateWithoutCreatedByDataInput", + "name": "ResourceTagUpdateWithoutCreatedByDataInput", "ofType": null } }, @@ -263769,7 +117552,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "TimerUpdateWithWhereUniqueWithoutTaskInput", + "name": "ResourceTagUpdateWithWhereUniqueWithoutResourceInput", "description": null, "fields": null, "inputFields": [ @@ -263781,7 +117564,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TimerWhereUniqueInput", + "name": "ResourceTagWhereUniqueInput", "ofType": null } }, @@ -263795,7 +117578,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TimerUpdateWithoutTaskDataInput", + "name": "ResourceTagUpdateWithoutResourceDataInput", "ofType": null } }, @@ -263808,7 +117591,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "TimerUpsertWithWhereUniqueWithoutCreatedByInput", + "name": "ResourceTagUpdateWithWhereUniqueWithoutTagInput", "description": null, "fields": null, "inputFields": [ @@ -263820,7 +117603,21 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TimerWhereUniqueInput", + "name": "ResourceTagWhereUniqueInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceTagUpdateWithoutTagDataInput", "ofType": null } }, @@ -263833,7 +117630,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "TimerUpsertWithWhereUniqueWithoutTaskInput", + "name": "ResourceTagUpsertWithWhereUniqueWithoutCreatedByInput", "description": null, "fields": null, "inputFields": [ @@ -263845,7 +117642,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TimerWhereUniqueInput", + "name": "ResourceTagWhereUniqueInput", "ofType": null } }, @@ -263858,56 +117655,144 @@ }, { "kind": "INPUT_OBJECT", - "name": "TournamentCreateWithoutGroupInput", + "name": "ResourceTagUpsertWithWhereUniqueWithoutResourceInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceTagWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceTagUpsertWithWhereUniqueWithoutTagInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "name", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceTagWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceUpdateManyWithoutCommentTargetInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "code", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "disconnect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereUniqueInput", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceUpdateOneWithoutCommentsInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "name": "ResourceWhereUniqueInput", "ofType": null }, "defaultValue": null }, { - "name": "Tourneys", + "name": "disconnect", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceUpdateOneWithoutVotesInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TourneyCreateManyWithoutTournamentInput", + "name": "ResourceWhereUniqueInput", "ofType": null }, "defaultValue": null @@ -263919,12 +117804,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "TournamentCreateWithoutTourneysInput", + "name": "ResourceUpdateWithoutChildsDataInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "code", "description": null, "type": { "kind": "SCALAR", @@ -263933,6 +117818,16 @@ }, "defaultValue": null }, + { + "name": "type", + "description": null, + "type": { + "kind": "ENUM", + "name": "ResourceType", + "ofType": null + }, + "defaultValue": null + }, { "name": "name", "description": null, @@ -263944,58 +117839,77 @@ "defaultValue": null }, { - "name": "code", + "name": "longtitle", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "content", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "kind": "SCALAR", + "name": "Json", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "contentText", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "published", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "deleted", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Group", + "name": "hidemenu", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TournamentGroupCreateOneWithoutTournamentsInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TournamentGroupCreateWithoutTournamentsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "searchable", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "uri", "description": null, "type": { "kind": "SCALAR", @@ -264005,175 +117919,131 @@ "defaultValue": null }, { - "name": "code", + "name": "isfolder", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "rating", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TournamentGroupUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", + "name": "positiveVotesCount", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "code", + "name": "negativeVotesCount", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TournamentGroupUpdateWithoutTournamentsDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", + "name": "neutralVotesCount", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "code", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutResourcesInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "Parent", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "name": "ResourceUpdateOneWithoutChildsInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TournamentUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", + "name": "Image", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "FileUpdateOneWithoutImageResourceInput", "ofType": null }, "defaultValue": null }, { - "name": "code", + "name": "PrismaProject", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "ProjectUpdateOneWithoutPrismaResourcesInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TournamentUpdateWithoutGroupDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", + "name": "CommentTarget", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ResourceUpdateOneWithoutCommentsInput", "ofType": null }, "defaultValue": null }, { - "name": "code", + "name": "Comments", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "ResourceUpdateManyWithoutCommentTargetInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "Votes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "name": "VoteUpdateManyWithoutResourceInput", "ofType": null }, "defaultValue": null }, { - "name": "Tourneys", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TourneyUpdateManyWithoutTournamentInput", + "name": "ResourceTagUpdateManyWithoutResourceInput", "ofType": null }, "defaultValue": null @@ -264185,46 +118055,57 @@ }, { "kind": "INPUT_OBJECT", - "name": "TournamentUpdateWithoutTourneysDataInput", + "name": "UserUpdateOneWithoutResourcesInput", "description": null, "fields": null, "inputFields": [ { - "name": "name", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", "ofType": null }, "defaultValue": null }, { - "name": "code", + "name": "disconnect", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Boolean", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceUpdateOneWithoutChildsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "CreatedBy", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "name": "ResourceWhereUniqueInput", "ofType": null }, "defaultValue": null }, { - "name": "Group", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TournamentGroupUpdateOneWithoutTournamentsInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null @@ -264236,35 +118117,27 @@ }, { "kind": "INPUT_OBJECT", - "name": "TournamentUpdateWithWhereUniqueWithoutGroupInput", + "name": "FileUpdateOneWithoutImageResourceInput", "description": null, "fields": null, "inputFields": [ { - "name": "where", + "name": "connect", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TournamentWhereUniqueInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "FileWhereUniqueInput", + "ofType": null }, "defaultValue": null }, { - "name": "data", + "name": "disconnect", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TournamentUpdateWithoutGroupDataInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null } @@ -264275,42 +118148,43 @@ }, { "kind": "INPUT_OBJECT", - "name": "TournamentUpsertWithWhereUniqueWithoutGroupInput", + "name": "VoteUpdateManyWithoutResourceInput", "description": null, "fields": null, "inputFields": [ { - "name": "where", + "name": "connect", "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "TournamentWhereUniqueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "VoteWhereUniqueInput", + "ofType": null + } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TourneyCreateOneWithoutPlayersInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TourneyWhereUniqueInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "VoteWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null } @@ -264321,12 +118195,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "TourneyCreateWithoutGamesInput", + "name": "ResourceUpdateWithoutCommentsDataInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "code", "description": null, "type": { "kind": "SCALAR", @@ -264336,253 +118210,231 @@ "defaultValue": null }, { - "name": "name", + "name": "type", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "ResourceType", "ofType": null }, "defaultValue": null }, { - "name": "code", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "date", + "name": "longtitle", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "date_till", + "name": "content", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "contentText", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tournament", + "name": "published", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TournamentCreateOneWithoutTourneysInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Players", + "name": "deleted", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TourneyPlayerCreateManyWithoutTourneyInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TourneyCreateWithoutPlayersInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "hidemenu", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "searchable", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "code", + "name": "uri", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "date", + "name": "isfolder", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "date_till", + "name": "rating", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "positiveVotesCount", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Tournament", + "name": "negativeVotesCount", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TournamentCreateOneWithoutTourneysInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Games", + "name": "neutralVotesCount", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "GameCreateManyWithoutTourneyInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TourneyCreateWithoutTournamentInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutResourcesInput", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "Parent", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ResourceUpdateOneWithoutChildsInput", "ofType": null }, "defaultValue": null }, { - "name": "code", + "name": "Childs", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "ResourceUpdateManyWithoutParentInput", "ofType": null }, "defaultValue": null }, { - "name": "date", + "name": "Image", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "FileUpdateOneWithoutImageResourceInput", "ofType": null }, "defaultValue": null }, { - "name": "date_till", + "name": "PrismaProject", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "ProjectUpdateOneWithoutPrismaResourcesInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "CommentTarget", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "name": "ResourceUpdateOneWithoutCommentsInput", "ofType": null }, "defaultValue": null }, { - "name": "Players", + "name": "Votes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TourneyPlayerCreateManyWithoutTourneyInput", + "name": "VoteUpdateManyWithoutResourceInput", "ofType": null }, "defaultValue": null }, { - "name": "Games", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "GameCreateManyWithoutTourneyInput", + "name": "ResourceTagUpdateManyWithoutResourceInput", "ofType": null }, "defaultValue": null @@ -264593,119 +118445,60 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "TourneyPlayerConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "INPUT_OBJECT", + "name": "ResourceUpdateManyWithoutParentInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "edges", - "description": "A list of edges.", - "args": [], + "name": "connect", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TourneyPlayerEdge", + "kind": "INPUT_OBJECT", + "name": "ResourceWhereUniqueInput", "ofType": null } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "aggregate", + "name": "disconnect", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateTourneyPlayer", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TourneyPlayerEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TourneyPlayer", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereUniqueInput", + "ofType": null + } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "TourneyPlayerCreateInput", + "name": "ResourceUpdateWithoutCommentTargetDataInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "code", "description": null, "type": { "kind": "SCALAR", @@ -264715,414 +118508,232 @@ "defaultValue": null }, { - "name": "Tourney", + "name": "type", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyCreateOneWithoutPlayersInput", - "ofType": null - } + "kind": "ENUM", + "name": "ResourceType", + "ofType": null }, "defaultValue": null }, { - "name": "User", + "name": "name", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TourneyPlayerCreateWithoutTourneyInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "longtitle", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "User", + "name": "content", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Json", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TourneyPlayerPreviousValues", - "description": null, - "fields": [ + }, { - "name": "id", + "name": "contentText", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TourneyPlayerSubscriptionPayload", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "mutation", + "name": "published", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "node", + "name": "deleted", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "TourneyPlayer", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "updatedFields", + "name": "hidemenu", "description": null, - "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "previousValues", + "name": "searchable", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "TourneyPlayerPreviousValues", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TourneyPlayerSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ + "defaultValue": null + }, { - "name": "AND", - "description": "Logical AND on all given filters.", + "name": "uri", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyPlayerSubscriptionWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", + "name": "isfolder", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyPlayerSubscriptionWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + "name": "rating", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyPlayerSubscriptionWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null }, { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", + "name": "positiveVotesCount", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", + "name": "negativeVotesCount", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", + "name": "neutralVotesCount", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", + "name": "CreatedBy", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutResourcesInput", + "ofType": null }, "defaultValue": null }, { - "name": "node", + "name": "Parent", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TourneyPlayerWhereInput", + "name": "ResourceUpdateOneWithoutChildsInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TourneyPlayerUpdateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "Tourney", + "name": "Childs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TourneyUpdateOneRequiredWithoutPlayersInput", + "name": "ResourceUpdateManyWithoutParentInput", "ofType": null }, "defaultValue": null }, { - "name": "User", + "name": "Image", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredInput", + "name": "FileUpdateOneWithoutImageResourceInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TourneyUpdateOneRequiredWithoutPlayersInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "PrismaProject", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TourneyWhereUniqueInput", + "name": "ProjectUpdateOneWithoutPrismaResourcesInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TourneyPlayerUpdateWithoutTourneyDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "User", + "name": "Comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredInput", + "name": "ResourceUpdateManyWithoutCommentTargetInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TourneyPlayerUpdateWithWhereUniqueWithoutTourneyInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "Votes", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyPlayerWhereUniqueInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "VoteUpdateManyWithoutResourceInput", + "ofType": null }, "defaultValue": null }, { - "name": "data", + "name": "Tags", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyPlayerUpdateWithoutTourneyDataInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "ResourceTagUpdateManyWithoutResourceInput", + "ofType": null }, "defaultValue": null } @@ -265133,35 +118744,30 @@ }, { "kind": "INPUT_OBJECT", - "name": "TourneyPlayerUpsertWithWhereUniqueWithoutTourneyInput", + "name": "ResourceUpdateWithoutCreatedByDataInput", "description": null, "fields": null, "inputFields": [ { - "name": "where", + "name": "code", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyPlayerWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TourneyUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ + }, + { + "name": "type", + "description": null, + "type": { + "kind": "ENUM", + "name": "ResourceType", + "ofType": null + }, + "defaultValue": null + }, { "name": "name", "description": null, @@ -265173,48 +118779,77 @@ "defaultValue": null }, { - "name": "code", + "name": "longtitle", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "date", + "name": "content", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "date_till", + "name": "contentText", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TourneyUpdateWithoutGamesDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", + "name": "published", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "deleted", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "hidemenu", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "searchable", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "uri", "description": null, "type": { "kind": "SCALAR", @@ -265224,61 +118859,131 @@ "defaultValue": null }, { - "name": "code", + "name": "isfolder", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "date", + "name": "rating", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "date_till", + "name": "positiveVotesCount", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "negativeVotesCount", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "neutralVotesCount", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Parent", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceUpdateOneWithoutChildsInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Childs", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceUpdateManyWithoutParentInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Image", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FileUpdateOneWithoutImageResourceInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "PrismaProject", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectUpdateOneWithoutPrismaResourcesInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "CommentTarget", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceUpdateOneWithoutCommentsInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "name": "ResourceUpdateManyWithoutCommentTargetInput", "ofType": null }, "defaultValue": null }, { - "name": "Tournament", + "name": "Votes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TournamentUpdateOneWithoutTourneysInput", + "name": "VoteUpdateManyWithoutResourceInput", "ofType": null }, "defaultValue": null }, { - "name": "Players", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TourneyPlayerUpdateManyWithoutTourneyInput", + "name": "ResourceTagUpdateManyWithoutResourceInput", "ofType": null }, "defaultValue": null @@ -265290,363 +118995,246 @@ }, { "kind": "INPUT_OBJECT", - "name": "TourneyUpdateWithoutPlayersDataInput", + "name": "ResourceUpdateWithoutImageDataInput", "description": null, "fields": null, "inputFields": [ { - "name": "name", + "name": "code", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "code", + "name": "type", + "description": null, + "type": { + "kind": "ENUM", + "name": "ResourceType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "date", + "name": "longtitle", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "date_till", + "name": "content", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "contentText", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tournament", + "name": "published", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TournamentUpdateOneWithoutTourneysInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Games", + "name": "deleted", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "GameUpdateManyWithoutTourneyInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TourneyUpdateWithoutTournamentDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", + "name": "hidemenu", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "code", + "name": "searchable", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "date", + "name": "uri", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "date_till", + "name": "isfolder", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "rating", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Players", + "name": "positiveVotesCount", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TourneyPlayerUpdateManyWithoutTourneyInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Games", + "name": "negativeVotesCount", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "GameUpdateManyWithoutTourneyInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TourneyUpdateWithWhereUniqueWithoutTournamentInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "neutralVotesCount", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "data", + "name": "CreatedBy", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyUpdateWithoutTournamentDataInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutResourcesInput", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TourneyUpsertWithWhereUniqueWithoutTournamentInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "Parent", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TourneyWhereUniqueInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "ResourceUpdateOneWithoutChildsInput", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "Childs", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "ResourceUpdateManyWithoutParentInput", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutGroupsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "PrismaProject", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "ProjectUpdateOneWithoutPrismaResourcesInput", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCareerInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "CommentTarget", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", + "name": "ResourceUpdateOneWithoutCommentsInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedUsersInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "Comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", + "name": "ResourceUpdateManyWithoutCommentTargetInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutSettingsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "Votes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", + "name": "VoteUpdateManyWithoutResourceInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutVotesInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", + "name": "ResourceTagUpdateManyWithoutResourceInput", "ofType": null }, "defaultValue": null @@ -265658,12 +119246,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "UserCreateWithoutCareerInput", + "name": "ResourceUpdateWithoutParentDataInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "code", "description": null, "type": { "kind": "SCALAR", @@ -265673,17 +119261,17 @@ "defaultValue": null }, { - "name": "username", + "name": "type", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "ResourceType", "ofType": null }, "defaultValue": null }, { - "name": "email", + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -265693,7 +119281,7 @@ "defaultValue": null }, { - "name": "phone", + "name": "longtitle", "description": null, "type": { "kind": "SCALAR", @@ -265703,77 +119291,77 @@ "defaultValue": null }, { - "name": "showEmail", + "name": "content", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "contentText", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "published", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "fullname", + "name": "deleted", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "image", + "name": "hidemenu", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "address", + "name": "searchable", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "active", + "name": "uri", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "isfolder", "description": null, "type": { "kind": "SCALAR", @@ -265783,535 +119371,489 @@ "defaultValue": null }, { - "name": "deleted", + "name": "rating", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "positiveVotesCount", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "sudo", + "name": "negativeVotesCount", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "neutralVotesCount", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutResourcesInput", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "Childs", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "ResourceUpdateManyWithoutParentInput", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "Image", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "FileUpdateOneWithoutImageResourceInput", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "PrismaProject", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "ProjectUpdateOneWithoutPrismaResourcesInput", "ofType": null }, "defaultValue": null }, { - "name": "Groups", + "name": "CommentTarget", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserGroupCreateManyWithoutUsersInput", + "name": "ResourceUpdateOneWithoutCommentsInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "Comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutCreatedByInput", + "name": "ResourceUpdateManyWithoutCommentTargetInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "Votes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedUsersInput", + "name": "VoteUpdateManyWithoutResourceInput", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LogedInCreateManyWithoutUserInput", + "name": "ResourceTagUpdateManyWithoutResourceInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceUpdateWithoutPrismaProjectDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Files", + "name": "code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "type", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "WorldCreateManyWithoutCreatedByInput", + "kind": "ENUM", + "name": "ResourceType", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsCreateOneWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "longtitle", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "content", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "contentText", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "published", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "deleted", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "hidemenu", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "searchable", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutMembersInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "uri", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "isfolder", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "rating", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "positiveVotesCount", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "negativeVotesCount", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "neutralVotesCount", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutUserInput", + "name": "UserUpdateOneWithoutResourcesInput", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "Parent", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutCreatedByInput", + "name": "ResourceUpdateOneWithoutChildsInput", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "Childs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutUserInput", + "name": "ResourceUpdateManyWithoutParentInput", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "Image", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCreatedByInput", + "name": "FileUpdateOneWithoutImageResourceInput", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "CommentTarget", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutUserInput", + "name": "ResourceUpdateOneWithoutCommentsInput", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "Comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutCreatedByInput", + "name": "ResourceUpdateManyWithoutCommentTargetInput", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "Votes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutCreatedByInput", + "name": "VoteUpdateManyWithoutResourceInput", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutUsersInput", + "name": "ResourceTagUpdateManyWithoutResourceInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceUpdateWithoutTagsDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "TasksReactions", + "name": "code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "type", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetterCreateManyWithoutUserInput", + "kind": "ENUM", + "name": "ResourceType", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutUserAuthedInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "longtitle", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "content", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutPrismaUsersInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "contentText", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ImportCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserGroupCreateManyWithoutUsersInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "published", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserGroupWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "WorldCreateManyWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "deleted", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WorldWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutUserInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "hidemenu", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "VoteWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateWithoutCodeChallengeCompletionsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "searchable", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "username", + "name": "uri", "description": null, "type": { "kind": "SCALAR", @@ -266321,521 +119863,727 @@ "defaultValue": null }, { - "name": "email", + "name": "isfolder", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "phone", + "name": "rating", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "showEmail", + "name": "positiveVotesCount", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "negativeVotesCount", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "neutralVotesCount", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "fullname", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutResourcesInput", "ofType": null }, "defaultValue": null }, { - "name": "image", + "name": "Parent", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ResourceUpdateOneWithoutChildsInput", "ofType": null }, "defaultValue": null }, { - "name": "address", + "name": "Childs", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ResourceUpdateManyWithoutParentInput", "ofType": null }, "defaultValue": null }, { - "name": "active", + "name": "Image", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "FileUpdateOneWithoutImageResourceInput", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "PrismaProject", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "ProjectUpdateOneWithoutPrismaResourcesInput", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "CommentTarget", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "ResourceUpdateOneWithoutCommentsInput", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "Comments", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "ResourceUpdateManyWithoutCommentTargetInput", "ofType": null }, "defaultValue": null }, { - "name": "sudo", + "name": "Votes", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "VoteUpdateManyWithoutResourceInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceUpdateWithoutVotesDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "marketplaceToken", + "name": "code", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "type", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "ResourceType", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "longtitle", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "content", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "Groups", + "name": "contentText", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "published", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "deleted", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedUsersInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "hidemenu", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "searchable", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "uri", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "WorldCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "isfolder", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsCreateOneWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "rating", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "positiveVotesCount", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "negativeVotesCount", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "neutralVotesCount", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TagCreateManyWithoutCreatedByInput", + "name": "UserUpdateOneWithoutResourcesInput", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "Parent", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutCreatedByInput", + "name": "ResourceUpdateOneWithoutChildsInput", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "Childs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutMembersInput", + "name": "ResourceUpdateManyWithoutParentInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "Image", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutCreatedByInput", + "name": "FileUpdateOneWithoutImageResourceInput", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "PrismaProject", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutCreatedByInput", + "name": "ProjectUpdateOneWithoutPrismaResourcesInput", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "CommentTarget", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateManyWithoutUserInput", + "name": "ResourceUpdateOneWithoutCommentsInput", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "Comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NoticeCreateManyWithoutUserInput", + "name": "ResourceUpdateManyWithoutCommentTargetInput", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateManyWithoutCreatedByInput", + "name": "ResourceTagUpdateManyWithoutResourceInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceUpdateWithWhereUniqueWithoutCommentTargetInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "EthAccounts", + "name": "where", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereUniqueInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "Teams", + "name": "data", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutUserInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceUpdateWithoutCommentTargetDataInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceUpdateWithWhereUniqueWithoutCreatedByInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "TeamsCreated", + "name": "where", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereUniqueInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "Projects", + "name": "data", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutUserInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceUpdateWithoutCreatedByDataInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceUpdateWithWhereUniqueWithoutParentInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "ProjectsCreated", + "name": "where", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereUniqueInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "Tasks", + "name": "data", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutUserInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceUpdateWithoutParentDataInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceUpdateWithWhereUniqueWithoutPrismaProjectInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "where", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereUniqueInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "Timers", + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceUpdateWithoutPrismaProjectDataInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceUpsertWithWhereUniqueWithoutCommentTargetInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "where", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereUniqueInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceUpsertWithWhereUniqueWithoutCreatedByInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "where", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereUniqueInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceUpsertWithWhereUniqueWithoutParentInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "where", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceUpsertWithWhereUniqueWithoutPrismaProjectInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "PositionsCreated", + "name": "where", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RouteCreateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Positions", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "path", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "exact", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetterCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "component", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutUserAuthedInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "Parent", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutPrismaUsersInput", + "name": "RouteCreateOneWithoutChildsInput", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "Childs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ImportCreateManyWithoutCreatedByInput", + "name": "RouteCreateManyWithoutParentInput", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CareerCreateOneWithoutCreatedByInput", + "name": "UserCreateOneInput", "ofType": null }, "defaultValue": null @@ -266847,32 +120595,62 @@ }, { "kind": "INPUT_OBJECT", - "name": "UserCreateWithoutCreatedByInput", + "name": "RouteCreateOneWithoutChildsInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "RouteWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RouteCreateManyWithoutParentInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "username", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RouteWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RouteCreateWithoutChildsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "email", + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -266882,17 +120660,21 @@ "defaultValue": null }, { - "name": "phone", + "name": "path", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "showEmail", + "name": "exact", "description": null, "type": { "kind": "SCALAR", @@ -266902,37 +120684,52 @@ "defaultValue": null }, { - "name": "showPhone", + "name": "component", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "password", + "name": "Parent", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "RouteCreateOneWithoutChildsInput", "ofType": null }, "defaultValue": null }, { - "name": "fullname", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserCreateOneInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RouteCreateWithoutParentInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "image", + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -266942,17 +120739,21 @@ "defaultValue": null }, { - "name": "address", + "name": "path", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "active", + "name": "exact", "description": null, "type": { "kind": "SCALAR", @@ -266962,47 +120763,62 @@ "defaultValue": null }, { - "name": "activated", + "name": "component", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "deleted", + "name": "Childs", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "RouteCreateManyWithoutParentInput", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserCreateOneInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RouteUpdateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "sudo", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "path", "description": null, "type": { "kind": "SCALAR", @@ -267012,7 +120828,7 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "exact", "description": null, "type": { "kind": "SCALAR", @@ -267022,371 +120838,574 @@ "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "component", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "Parent", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "RouteUpdateOneWithoutChildsInput", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "Childs", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RouteUpdateManyWithoutParentInput", "ofType": null }, "defaultValue": null }, { - "name": "Groups", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserGroupCreateManyWithoutUsersInput", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RouteUpdateOneWithoutChildsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "CreatedUsers", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutCreatedByInput", + "name": "RouteWhereUniqueInput", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RouteUpdateManyWithoutParentInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Files", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RouteWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "worlds", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "WorldCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RouteWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RouteUpdateWithoutChildsDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "settings", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsCreateOneWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "path", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "exact", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "component", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "Parent", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutCreatedByInput", + "name": "RouteUpdateOneWithoutChildsInput", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TagCreateManyWithoutCreatedByInput", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RouteUpdateWithoutParentDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "ResourceTags", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "path", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutMembersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "exact", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "component", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "Childs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateManyWithoutUserInput", + "name": "RouteUpdateManyWithoutParentInput", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NoticeCreateManyWithoutUserInput", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RouteUpdateWithWhereUniqueWithoutParentInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "EthContractSourcesCreated", + "name": "where", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RouteWhereUniqueInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "data", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RouteUpdateWithoutParentDataInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RouteUpsertWithWhereUniqueWithoutParentInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Teams", + "name": "where", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutUserInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RouteWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SmsMessageConnection", + "description": "A connection to a list of items.", + "fields": [ { - "name": "TeamsCreated", - "description": null, + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Projects", - "description": null, + "name": "edges", + "description": "A list of edges.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutUserInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SmsMessageEdge", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ProjectsCreated", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AggregateSmsMessage", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SmsMessageEdge", + "description": "An edge in a connection.", + "fields": [ { - "name": "Tasks", - "description": null, + "name": "node", + "description": "The item at the end of the edge.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutUserInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SmsMessage", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Timers", - "description": null, + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SmsMessageCreateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "PositionsCreated", + "name": "from", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "Positions", + "name": "text", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutUsersInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "deletOnSend", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "recipients", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LetterCreateManyWithoutUserInput", + "name": "SmsMessageCreaterecipientsInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "Provider", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutUserAuthedInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SmsProviderCreateOneInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCreatedByInput", + "name": "UserCreateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "Status", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutPrismaUsersInput", + "name": "LetsadsSmsMessageStatusCreateOneWithoutSmsMessageInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SmsMessageCreaterecipientsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Imports", + "name": "set", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ImportCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SmsProviderCreateOneInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Career", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CareerCreateOneWithoutCreatedByInput", + "name": "SmsProviderWhereUniqueInput", "ofType": null }, "defaultValue": null @@ -267398,7 +121417,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "UserCreateWithoutCreatedRoomsInput", + "name": "SmsProviderWhereUniqueInput", "description": null, "fields": null, "inputFields": [ @@ -267413,7 +121432,7 @@ "defaultValue": null }, { - "name": "username", + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -267421,29 +121440,48 @@ "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SmsMessageCreateWithoutStatusInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "email", + "name": "from", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "phone", + "name": "text", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "showEmail", + "name": "deletOnSend", "description": null, "type": { "kind": "SCALAR", @@ -267453,1139 +121491,1747 @@ "defaultValue": null }, { - "name": "showPhone", + "name": "recipients", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "SmsMessageCreaterecipientsInput", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "Provider", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SmsProviderCreateOneInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "fullname", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserCreateOneInput", "ofType": null }, "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "SmsMessageOrderByInput", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "image", + "name": "id_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "address", + "name": "createdAt_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "active", + "name": "createdAt_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "activated", + "name": "updatedAt_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "deleted", + "name": "updatedAt_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "hidden", + "name": "from_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "sudo", + "name": "from_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "text_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "text_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deletOnSend_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "marketplaceToken", + "name": "deletOnSend_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SmsMessagePreviousValues", + "description": null, + "fields": [ + { + "name": "id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "acceptChatMessageAnonymous", + "name": "createdAt", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "updatedAt", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "acceptNewChatRoom", + "name": "from", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "oldID", + "name": "text", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Groups", + "name": "recipients", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupCreateManyWithoutUsersInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedUsers", + "name": "deletOnSend", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SmsMessageSubscriptionPayload", + "description": null, + "fields": [ { - "name": "CreatedBy", + "name": "mutation", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedUsersInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "LogedIns", + "name": "node", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInCreateManyWithoutUserInput", + "kind": "OBJECT", + "name": "SmsMessage", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Files", + "name": "updatedFields", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateManyWithoutCreatedByInput", - "ofType": null + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "worlds", + "name": "previousValues", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "WorldCreateManyWithoutCreatedByInput", + "kind": "OBJECT", + "name": "SmsMessagePreviousValues", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SmsMessageSubscriptionWhereInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "settings", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsCreateOneWithoutUserInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SmsMessageSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Resources", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SmsMessageSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Votes", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutUserInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SmsMessageSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "NotificationTypes", - "description": null, + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutUsersInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "NotificationTypesCreated", - "description": null, + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tags", - "description": null, + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", "type": { - "kind": "INPUT_OBJECT", - "name": "TagCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "ResourceTags", - "description": null, + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Rooms", + "name": "node", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutMembersInput", + "name": "SmsMessageWhereInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SmsMessageUpdateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Messages", + "name": "from", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "text", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "deletOnSend", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "recipients", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateManyWithoutCreatedByInput", + "name": "SmsMessageUpdaterecipientsInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "Provider", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutCreatedByInput", + "name": "SmsProviderUpdateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutUserInput", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "Status", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutCreatedByInput", + "name": "LetsadsSmsMessageStatusUpdateOneWithoutSmsMessageInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SmsMessageUpdaterecipientsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Projects", + "name": "set", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutUserInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SmsProviderUpdateOneInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "ProjectsCreated", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCreatedByInput", + "name": "SmsProviderWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SmsMessageUpdateWithoutStatusDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Tasks", + "name": "from", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "text", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "deletOnSend", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "recipients", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutUsersInput", + "name": "SmsMessageUpdaterecipientsInput", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "Provider", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutCreatedByInput", + "name": "SmsProviderUpdateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LetterCreateManyWithoutUserInput", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SmsProviderConnection", + "description": "A connection to a list of items.", + "fields": [ { - "name": "EthAccountAuthed", - "description": null, + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutUserAuthedInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CodeChallengeCompletions", - "description": null, + "name": "edges", + "description": "A list of edges.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SmsProviderEdge", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "PrismaProjects", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutPrismaUsersInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AggregateSmsProvider", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SmsProviderEdge", + "description": "An edge in a connection.", + "fields": [ { - "name": "Imports", - "description": null, + "name": "node", + "description": "The item at the end of the edge.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ImportCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SmsProvider", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Career", - "description": null, + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CareerCreateOneWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "UserCreateWithoutCreatedUsersInput", + "name": "SmsProviderCreateInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "name", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "username", + "name": "credentials", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "email", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserCreateOneInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "SmsProviderOrderByInput", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "phone", + "name": "id_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "showEmail", + "name": "id_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "showPhone", + "name": "name_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "password", + "name": "name_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "fullname", + "name": "credentials_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "image", + "name": "credentials_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "address", + "name": "updatedAt_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "active", + "name": "updatedAt_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "activated", + "name": "createdAt_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "deleted", + "name": "createdAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SmsProviderPreviousValues", + "description": null, + "fields": [ + { + "name": "id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "hidden", + "name": "name", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "sudo", + "name": "credentials", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Json", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SmsProviderSubscriptionPayload", + "description": null, + "fields": [ { - "name": "marketplaceToken", + "name": "mutation", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "acceptChatMessageAnonymous", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "SmsProvider", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "updatedFields", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "acceptNewChatRoom", + "name": "previousValues", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "SmsProviderPreviousValues", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SmsProviderSubscriptionWhereInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "oldID", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SmsProviderSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Groups", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupCreateManyWithoutUsersInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SmsProviderSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedUsersInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SmsProviderSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "LogedIns", - "description": null, + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInCreateManyWithoutUserInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Files", - "description": null, + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "worlds", - "description": null, + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", "type": { - "kind": "INPUT_OBJECT", - "name": "WorldCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "settings", - "description": null, + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsCreateOneWithoutUserInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Resources", + "name": "node", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutCreatedByInput", + "name": "SmsProviderWhereInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SmsProviderUpdateDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Votes", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "credentials", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutCreatedByInput", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SmsProviderUpdateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Tags", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "credentials", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutMembersInput", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TagCreateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "CreatedRooms", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "Messages", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutCreatedByInput", + "kind": "ENUM", + "name": "TagStatus", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateManyWithoutUserInput", + "name": "ResourceTagCreateManyWithoutTagInput", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "CreatedBy", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeCreateManyWithoutUserInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutTagsInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutTagsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "EthContractSourcesCreated", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateManyWithoutCreatedByInput", + "name": "UserWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TagCreateManyWithoutCreatedByInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "EthAccounts", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TagWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TagCreateWithoutCreatedByInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Teams", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutUserInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutCreatedByInput", + "kind": "ENUM", + "name": "TagStatus", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutUserInput", + "name": "ResourceTagCreateManyWithoutTagInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TagCreateWithoutResourcesInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "ProjectsCreated", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "Tasks", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutUserInput", + "kind": "ENUM", + "name": "TagStatus", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "CreatedBy", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutTagsInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TagPreviousValues", + "description": null, + "fields": [ { - "name": "PositionsCreated", + "name": "id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Positions", + "name": "createdAt", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutUsersInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "TasksReactions", + "name": "updatedAt", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "LettersCreated", + "name": "name", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "LetterCreateManyWithoutUserInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "EthAccountAuthed", + "name": "status", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutUserAuthedInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TagStatus", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TagSubscriptionPayload", + "description": null, + "fields": [ { - "name": "CodeChallengeCompletions", + "name": "mutation", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "PrismaProjects", + "name": "node", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutPrismaUsersInput", + "kind": "OBJECT", + "name": "Tag", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Imports", + "name": "updatedFields", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ImportCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Career", + "name": "previousValues", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CareerCreateOneWithoutCreatedByInput", + "kind": "OBJECT", + "name": "TagPreviousValues", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "UserCreateWithoutEthAccountAuthedInput", + "name": "TagSubscriptionWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TagSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "username", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TagSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "email", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TagSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "phone", - "description": null, + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "showEmail", - "description": null, + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", - "description": null, + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "password", - "description": null, + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "fullname", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "TagWhereInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TagUpdateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "image", + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -268595,67 +123241,116 @@ "defaultValue": null }, { - "name": "address", + "name": "status", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "TagStatus", "ofType": null }, "defaultValue": null }, { - "name": "active", + "name": "Resources", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "ResourceTagUpdateManyWithoutTagInput", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutTagsInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutTagsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "deleted", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TagUpdateManyWithoutCreatedByInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "hidden", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TagWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "sudo", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TagWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TagUpdateWithoutCreatedByDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "marketplaceToken", + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -268665,932 +123360,1336 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "status", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "TagStatus", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "Resources", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "ResourceTagUpdateManyWithoutTagInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TagUpdateWithoutResourcesDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "acceptNewChatRoom", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "status", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "TagStatus", "ofType": null }, "defaultValue": null }, { - "name": "Groups", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserGroupCreateManyWithoutUsersInput", + "name": "UserUpdateOneWithoutTagsInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TagUpdateWithWhereUniqueWithoutCreatedByInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "CreatedUsers", + "name": "where", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TagWhereUniqueInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "data", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedUsersInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TagUpdateWithoutCreatedByDataInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TagUpsertWithWhereUniqueWithoutCreatedByInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "LogedIns", + "name": "where", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInCreateManyWithoutUserInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TagWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TarifConnection", + "description": "A connection to a list of items.", + "fields": [ { - "name": "Files", - "description": null, + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "worlds", - "description": null, + "name": "edges", + "description": "A list of edges.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "WorldCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TarifEdge", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "settings", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsCreateOneWithoutUserInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AggregateTarif", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TarifEdge", + "description": "An edge in a connection.", + "fields": [ { - "name": "Resources", - "description": null, + "name": "node", + "description": "The item at the end of the edge.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Tarif", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Votes", - "description": null, + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutUserInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TarifCreateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "NotificationTypes", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutUsersInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "active", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "maxPriceItems", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "price", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "allowIcon", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutMembersInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "allowBanner", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "UserTarifs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutCreatedByInput", + "name": "UserTarifCreateManyWithoutTarifInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserTarifCreateManyWithoutTarifInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "ReadedMessages", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateManyWithoutUserInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserTarifWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserTarifWhereUniqueInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Notices", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TarifCreateWithoutUserTarifsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "EthContractSourcesCreated", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "active", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "maxPriceItems", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "price", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "allowIcon", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "allowBanner", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TarifPreviousValues", + "description": null, + "fields": [ { - "name": "Tasks", + "name": "id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutUserInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Timers", + "name": "name", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "PositionsCreated", + "name": "active", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Positions", + "name": "maxPriceItems", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "TasksReactions", + "name": "price", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "LettersCreated", + "name": "allowIcon", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "LetterCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CodeChallengeCompletions", + "name": "allowBanner", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TarifRequestConnection", + "description": "A connection to a list of items.", + "fields": [ { - "name": "PrismaProjects", - "description": null, + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutPrismaUsersInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Imports", - "description": null, + "name": "edges", + "description": "A list of edges.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ImportCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TarifRequestEdge", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Career", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CareerCreateOneWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AggregateTarifRequest", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "UserCreateWithoutEthAccountsInput", - "description": null, - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "TarifRequestEdge", + "description": "An edge in a connection.", + "fields": [ { - "name": "id", - "description": null, + "name": "node", + "description": "The item at the end of the edge.", + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TarifRequest", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "username", - "description": null, + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "TarifRequestOrderByInput", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "email", + "name": "id_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "phone", + "name": "id_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "showEmail", + "name": "createdAt_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "showPhone", + "name": "createdAt_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "password", + "name": "executed_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "fullname", + "name": "executed_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "image", + "name": "updatedAt_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "address", + "name": "updatedAt_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TarifRequestPreviousValues", + "description": null, + "fields": [ { - "name": "active", + "name": "id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "activated", + "name": "createdAt", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "deleted", + "name": "executed", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TarifRequestSubscriptionPayload", + "description": null, + "fields": [ { - "name": "hidden", + "name": "mutation", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "sudo", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "TarifRequest", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "marketplaceToken", + "name": "updatedFields", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "acceptChatMessageAnonymous", + "name": "previousValues", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "TarifRequestPreviousValues", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TarifRequestSubscriptionWhereInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "acceptNewChatRoomAnonymous", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TarifRequestSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "acceptNewChatRoom", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TarifRequestSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "oldID", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TarifRequestSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Groups", - "description": null, + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupCreateManyWithoutUsersInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "CreatedUsers", - "description": null, + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", - "description": null, + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedUsersInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "LogedIns", - "description": null, + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInCreateManyWithoutUserInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Files", + "name": "node", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FileCreateManyWithoutCreatedByInput", + "name": "TarifRequestWhereInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TarifRequestWhereInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "worlds", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "INPUT_OBJECT", - "name": "WorldCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TarifRequestWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "settings", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsCreateOneWithoutUserInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TarifRequestWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Resources", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TarifRequestWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Votes", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", - "description": null, + "name": "id_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", - "description": null, + "name": "id_in", + "description": "All values that are contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Tags", - "description": null, + "name": "id_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "TagCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "ResourceTags", - "description": null, + "name": "id_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", - "description": null, + "name": "id_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutMembersInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", - "description": null, + "name": "id_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Messages", - "description": null, + "name": "id_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", - "description": null, + "name": "id_contains", + "description": "All values containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Notices", - "description": null, + "name": "id_not_contains", + "description": "All values not containing the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", - "description": null, + "name": "id_starts_with", + "description": "All values starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Teams", - "description": null, + "name": "id_not_starts_with", + "description": "All values not starting with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", - "description": null, + "name": "id_ends_with", + "description": "All values ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Projects", - "description": null, + "name": "id_not_ends_with", + "description": "All values not ending with the given string.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "createdAt", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", - "description": null, + "name": "createdAt_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Timers", - "description": null, + "name": "createdAt_in", + "description": "All values that are contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "PositionsCreated", - "description": null, + "name": "createdAt_not_in", + "description": "All values that are not contained in given list.", "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Positions", - "description": null, + "name": "createdAt_lt", + "description": "All values less than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", - "description": null, + "name": "createdAt_lte", + "description": "All values less than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", - "description": null, + "name": "createdAt_gt", + "description": "All values greater than the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "LetterCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", - "description": null, + "name": "createdAt_gte", + "description": "All values greater than or equal the given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutUserAuthedInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "executed", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", - "description": null, + "name": "executed_not", + "description": "All values that are not equal to given value.", "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutPrismaUsersInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "User", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ImportCreateManyWithoutCreatedByInput", + "name": "UserWhereInput", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "Tarif", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CareerCreateOneWithoutCreatedByInput", + "name": "TarifWhereInput", "ofType": null }, "defaultValue": null @@ -269602,192 +124701,315 @@ }, { "kind": "INPUT_OBJECT", - "name": "UserCreateWithoutEthContractSourcesCreatedInput", + "name": "TarifRequestUpdateInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "executed", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "username", + "name": "User", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "email", + "name": "Tarif", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "TarifUpdateOneInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TarifUpdateOneInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "phone", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "TarifWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TarifRequestWhereUniqueInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "showEmail", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TarifSubscriptionPayload", + "description": null, + "fields": [ { - "name": "showPhone", + "name": "mutation", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "password", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Tarif", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "fullname", + "name": "updatedFields", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "image", + "name": "previousValues", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "TarifPreviousValues", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TarifSubscriptionWhereInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "address", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TarifSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "active", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TarifSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "activated", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TarifSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "deleted", - "description": null, + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "hidden", - "description": null, + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "sudo", - "description": null, + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "marketplaceToken", - "description": null, + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "TarifWhereInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TarifUpdateDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "acceptNewChatRoomAnonymous", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "active", "description": null, "type": { "kind": "SCALAR", @@ -269797,7 +125019,7 @@ "defaultValue": null }, { - "name": "oldID", + "name": "maxPriceItems", "description": null, "type": { "kind": "SCALAR", @@ -269807,518 +125029,722 @@ "defaultValue": null }, { - "name": "Groups", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupCreateManyWithoutUsersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedUsers", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedUsersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "LogedIns", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInCreateManyWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Files", + "name": "price", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "allowIcon", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "WorldCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "allowBanner", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsCreateOneWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "UserTarifs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutCreatedByInput", + "name": "UserTarifUpdateManyWithoutTarifInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserTarifUpdateManyWithoutTarifInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Votes", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutUserInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserTarifWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutUsersInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserTarifWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TarifUpdateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "NotificationTypesCreated", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "active", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "maxPriceItems", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "price", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutMembersInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "allowIcon", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "allowBanner", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "UserTarifs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateManyWithoutUserInput", + "name": "UserTarifUpdateManyWithoutTarifInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TarifUpdateOneWithoutUserTarifsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Notices", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NoticeCreateManyWithoutUserInput", + "name": "TarifWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TarifUpdateWithoutUserTarifsDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "EthAccounts", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "active", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "maxPriceItems", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "price", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "allowIcon", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "allowBanner", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TeamConnection", + "description": "A connection to a list of items.", + "fields": [ { - "name": "Timers", - "description": null, + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "PositionsCreated", - "description": null, + "name": "edges", + "description": "A list of edges.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TeamEdge", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Positions", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutUsersInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AggregateTeam", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TeamEdge", + "description": "An edge in a connection.", + "fields": [ { - "name": "TasksReactions", - "description": null, + "name": "node", + "description": "The item at the end of the edge.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "LettersCreated", - "description": null, + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "LetterCreateManyWithoutUserInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TeamPreviousValues", + "description": null, + "fields": [ { - "name": "EthAccountAuthed", + "name": "id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutUserAuthedInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TeamSubscriptionPayload", + "description": null, + "fields": [ { - "name": "CodeChallengeCompletions", + "name": "mutation", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "PrismaProjects", + "name": "node", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutPrismaUsersInput", + "kind": "OBJECT", + "name": "Team", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Imports", + "name": "updatedFields", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ImportCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Career", + "name": "previousValues", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CareerCreateOneWithoutCreatedByInput", + "kind": "OBJECT", + "name": "TeamPreviousValues", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "UserCreateWithoutFilesInput", + "name": "TeamSubscriptionWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "username", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TeamSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "email", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TeamSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "phone", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TeamSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "showEmail", - "description": null, + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "showPhone", - "description": null, + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "password", - "description": null, + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "fullname", - "description": null, + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "image", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "TeamWhereInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TopicCreateManyWithoutCreated_byInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "address", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TopicWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TopicCreateWithoutCreated_byInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "active", + "name": "topic_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "created_at", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, "defaultValue": null }, { - "name": "deleted", + "name": "name", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "hidden", + "name": "editor_content", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "sudo", + "name": "url_name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "type_id", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "published", "description": null, "type": { "kind": "SCALAR", @@ -270328,372 +125754,591 @@ "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "description", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TopicPreviousValues", + "description": null, + "fields": [ { - "name": "acceptNewChatRoom", + "name": "id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "oldID", + "name": "topic_id", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Groups", + "name": "updatedAt", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupCreateManyWithoutUsersInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedUsers", + "name": "createdAt", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "created_at", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedUsersInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "LogedIns", + "name": "name", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInCreateManyWithoutUserInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "worlds", + "name": "editor_content", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "WorldCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "settings", + "name": "url_name", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsCreateOneWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Resources", + "name": "type_id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Votes", + "name": "published", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "NotificationTypes", + "name": "description", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TopicSubscriptionPayload", + "description": null, + "fields": [ { - "name": "NotificationTypesCreated", + "name": "mutation", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Tags", + "name": "node", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TagCreateManyWithoutCreatedByInput", + "kind": "OBJECT", + "name": "Topic", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ResourceTags", + "name": "updatedFields", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Rooms", + "name": "previousValues", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutMembersInput", + "kind": "OBJECT", + "name": "TopicPreviousValues", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TopicSubscriptionWhereInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "CreatedRooms", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TopicSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Messages", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TopicSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "ReadedMessages", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateManyWithoutUserInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TopicSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Notices", - "description": null, + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeCreateManyWithoutUserInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", - "description": null, + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", - "description": null, + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Teams", - "description": null, + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutUserInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "node", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutCreatedByInput", + "name": "TopicWhereInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TopicUpdateManyWithoutCreated_byInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Projects", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutUserInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TopicWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TopicWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TopicUpdateWithoutCreated_byDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Tasks", + "name": "topic_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "editor_content", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "url_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "type_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetterCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "published", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutUserAuthedInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "description", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TopicUpdateWithWhereUniqueWithoutCreated_byInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "PrismaProjects", + "name": "where", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutPrismaUsersInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TopicWhereUniqueInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "Imports", + "name": "data", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ImportCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TopicUpdateWithoutCreated_byDataInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TopicUpsertWithWhereUniqueWithoutCreated_byInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Career", + "name": "where", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CareerCreateOneWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TopicWhereUniqueInput", + "ofType": null + } }, "defaultValue": null } @@ -270704,102 +126349,173 @@ }, { "kind": "INPUT_OBJECT", - "name": "UserCreateWithoutGroupsInput", + "name": "TournamentCreateInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "username", + "name": "code", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "email", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserCreateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "phone", + "name": "Tourneys", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "TourneyCreateManyWithoutTournamentInput", "ofType": null }, "defaultValue": null }, { - "name": "showEmail", + "name": "Group", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "TournamentGroupCreateOneWithoutTournamentsInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TourneyCreateManyWithoutTournamentInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "showPhone", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TourneyWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TournamentGroupCreateOneWithoutTournamentsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "password", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "TournamentGroupWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TournamentCreateManyWithoutGroupInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "fullname", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TournamentWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TournamentCreateOneWithoutTourneysInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "image", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "TournamentWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TournamentCreateWithoutGroupInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "address", + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -270809,442 +126525,625 @@ "defaultValue": null }, { - "name": "active", + "name": "code", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserCreateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "Tourneys", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "TourneyCreateManyWithoutTournamentInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TournamentCreateWithoutTourneysInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "hidden", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "sudo", + "name": "code", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserCreateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "Group", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "TournamentGroupCreateOneWithoutTournamentsInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TournamentGroupCreateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "acceptNewChatRoomAnonymous", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "code", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "UserCreateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "Tournaments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutCreatedByInput", + "name": "TournamentCreateManyWithoutGroupInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TournamentGroupCreateWithoutTournamentsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "CreatedBy", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FileCreateManyWithoutCreatedByInput", + "name": "UserCreateOneInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TournamentGroupUpdateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "worlds", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "WorldCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsCreateOneWithoutUserInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutCreatedByInput", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "Tournaments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutUserInput", + "name": "TournamentUpdateManyWithoutGroupInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TournamentUpdateManyWithoutGroupInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "NotificationTypes", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutUsersInput", - "ofType": null + "name": "connect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TournamentWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TournamentWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TournamentGroupUpdateOneWithoutTournamentsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Tags", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TagCreateManyWithoutCreatedByInput", + "name": "TournamentGroupWhereUniqueInput", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TournamentGroupUpdateWithoutTournamentsDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Rooms", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutMembersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutCreatedByInput", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TournamentUpdateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "ReadedMessages", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateManyWithoutCreatedByInput", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "Tourneys", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutCreatedByInput", + "name": "TourneyUpdateManyWithoutTournamentInput", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "Group", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutUserInput", + "name": "TournamentGroupUpdateOneWithoutTournamentsInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TourneyUpdateManyWithoutTournamentInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "TeamsCreated", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TourneyWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Projects", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutUserInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TourneyWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TournamentUpdateOneWithoutTourneysInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "ProjectsCreated", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCreatedByInput", + "name": "TournamentWhereUniqueInput", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TournamentUpdateWithoutGroupDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Timers", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutUsersInput", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "Tourneys", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutCreatedByInput", + "name": "TourneyUpdateManyWithoutTournamentInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TournamentUpdateWithoutTourneysDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "LettersCreated", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetterCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutUserAuthedInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCreatedByInput", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "Group", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutPrismaUsersInput", + "name": "TournamentGroupUpdateOneWithoutTournamentsInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TournamentUpdateWithWhereUniqueWithoutGroupInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Imports", + "name": "where", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ImportCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TournamentWhereUniqueInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "Career", + "name": "data", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CareerCreateOneWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TournamentUpdateWithoutGroupDataInput", + "ofType": null + } }, "defaultValue": null } @@ -271255,22 +127154,37 @@ }, { "kind": "INPUT_OBJECT", - "name": "UserCreateWithoutImportsInput", + "name": "TournamentUpsertWithWhereUniqueWithoutGroupInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TournamentWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TourneyCreateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "username", + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -271280,77 +127194,88 @@ "defaultValue": null }, { - "name": "email", + "name": "code", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "phone", + "name": "date", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "showEmail", + "name": "date_till", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserCreateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "Tournament", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "TournamentCreateOneWithoutTourneysInput", "ofType": null }, "defaultValue": null }, { - "name": "fullname", + "name": "Users", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserCreateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "image", + "name": "Games", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "GameCreateManyWithoutTourneyInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TourneyCreateWithoutGamesInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "address", + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -271360,609 +127285,877 @@ "defaultValue": null }, { - "name": "active", + "name": "code", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "date", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "date_till", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserCreateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "sudo", + "name": "Tournament", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "TournamentCreateOneWithoutTourneysInput", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "Users", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserCreateManyInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TourneyCreateWithoutTournamentInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "acceptChatMessageAnonymous", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "code", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "date", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "date_till", "description": null, "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Groups", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupCreateManyWithoutUsersInput", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutCreatedByInput", + "name": "UserCreateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "Users", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedUsersInput", + "name": "UserCreateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "Games", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LogedInCreateManyWithoutUserInput", + "name": "GameCreateManyWithoutTourneyInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TourneyUpdateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Files", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "WorldCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsCreateOneWithoutUserInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "date_till", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutUserInput", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "Tournament", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutUsersInput", + "name": "TournamentUpdateOneWithoutTourneysInput", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "Users", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutCreatedByInput", + "name": "UserUpdateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "Games", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TagCreateManyWithoutCreatedByInput", + "name": "GameUpdateManyWithoutTourneyInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TourneyUpdateWithoutGamesDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "ResourceTags", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutMembersInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "date_till", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateManyWithoutUserInput", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "Tournament", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NoticeCreateManyWithoutUserInput", + "name": "TournamentUpdateOneWithoutTourneysInput", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "Users", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateManyWithoutCreatedByInput", + "name": "UserUpdateManyInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TourneyUpdateWithoutTournamentDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "EthAccounts", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "date_till", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCreatedByInput", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "Users", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutUserInput", + "name": "UserUpdateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "Games", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutCreatedByInput", + "name": "GameUpdateManyWithoutTourneyInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TourneyUpdateWithWhereUniqueWithoutTournamentInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "PositionsCreated", + "name": "where", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TourneyWhereUniqueInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "Positions", + "name": "data", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutUsersInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TourneyUpdateWithoutTournamentDataInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TourneyUpsertWithWhereUniqueWithoutTournamentInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "TasksReactions", + "name": "where", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TourneyWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TransactionConnection", + "description": "A connection to a list of items.", + "fields": [ { - "name": "LettersCreated", - "description": null, + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "LetterCreateManyWithoutUserInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "EthAccountAuthed", - "description": null, + "name": "edges", + "description": "A list of edges.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutUserAuthedInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionEdge", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CodeChallengeCompletions", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AggregateTransaction", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TransactionEdge", + "description": "An edge in a connection.", + "fields": [ { - "name": "PrismaProjects", - "description": null, + "name": "node", + "description": "The item at the end of the edge.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutPrismaUsersInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Transaction", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Career", - "description": null, + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CareerCreateOneWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "UserCreateWithoutLettersCreatedInput", + "name": "TransactionCreateInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "amount", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, "defaultValue": null }, { - "name": "username", + "name": "Account", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AccountCreateOneWithoutTransactionsInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "email", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TransactionCreateWithoutAccountInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "phone", + "name": "amount", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, "defaultValue": null }, { - "name": "showEmail", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TransactionPreviousValues", + "description": null, + "fields": [ { - "name": "showPhone", + "name": "id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "password", + "name": "createdAt", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "fullname", + "name": "amount", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TransactionSubscriptionPayload", + "description": null, + "fields": [ { - "name": "image", + "name": "mutation", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "address", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Transaction", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "active", + "name": "updatedFields", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "activated", + "name": "previousValues", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "TransactionPreviousValues", "ofType": null }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TransactionSubscriptionWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": "Logical AND on all given filters.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TransactionSubscriptionWhereInput", + "ofType": null + } + } + }, "defaultValue": null }, { - "name": "deleted", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TransactionSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "hidden", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TransactionSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "sudo", - "description": null, + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "marketplaceToken", - "description": null, + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", "type": { "kind": "SCALAR", "name": "String", @@ -271971,61 +128164,78 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", - "description": null, + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", - "description": null, + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "TransactionWhereInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TransactionUpdateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "oldID", + "name": "amount", "description": null, "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Groups", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupCreateManyWithoutUsersInput", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "Account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutCreatedByInput", + "name": "AccountUpdateOneWithoutTransactionsInput", "ofType": null }, "defaultValue": null @@ -272035,354 +128245,481 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedUsersInput", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TransactionUpdateWithoutAccountDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "LogedIns", + "name": "amount", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FileCreateManyWithoutCreatedByInput", + "name": "UserUpdateOneInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TransactionUpdateWithWhereUniqueWithoutAccountInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "worlds", + "name": "where", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "WorldCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TransactionWhereUniqueInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "settings", + "name": "data", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsCreateOneWithoutUserInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TransactionUpdateWithoutAccountDataInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TransactionUpsertWithWhereUniqueWithoutAccountInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Resources", + "name": "where", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TransactionWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserCreateManyWithoutCreatedByInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Votes", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutUserInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserCreateManyWithoutGroupsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "NotificationTypes", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutUsersInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutCommentsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "NotificationTypesCreated", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutCreatedByInput", + "name": "UserWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutCreatedUsersInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Tags", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TagCreateManyWithoutCreatedByInput", + "name": "UserWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutTopicsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "ResourceTags", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutCreatedByInput", + "name": "UserWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutVotesInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Rooms", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutMembersInput", + "name": "UserWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserCreateWithoutAccountInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "CreatedRooms", + "name": "username", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "showEmail", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "showPhone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "password", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "fullname", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "image", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "active", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "activated", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "deleted", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "hidden", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "user_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "first_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "middle_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutUserAuthedInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "last_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "gender", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutPrismaUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "birth_date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ImportCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "country_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CareerCreateOneWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateWithoutLogedInsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "region_id", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "username", + "name": "city_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "email", + "name": "status", "description": null, "type": { "kind": "SCALAR", @@ -272392,7 +128729,7 @@ "defaultValue": null }, { - "name": "phone", + "name": "timezone", "description": null, "type": { "kind": "SCALAR", @@ -272402,57 +128739,57 @@ "defaultValue": null }, { - "name": "showEmail", + "name": "language_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "num_blog_posts", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "last", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "fullname", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "image", + "name": "notification", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "address", + "name": "icq", "description": null, "type": { "kind": "SCALAR", @@ -272462,57 +128799,57 @@ "defaultValue": null }, { - "name": "active", + "name": "www", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "contact_email", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "mobile_phone", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "home_phone", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "sudo", + "name": "about", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "experience", "description": null, "type": { "kind": "SCALAR", @@ -272522,161 +128859,161 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "job_title", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "work_place", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "ip", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "confirmation_code", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Groups", + "name": "rating", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "etherwallet", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "photo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "sudo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "Groups", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "WorldCreateManyWithoutCreatedByInput", + "name": "UserGroupCreateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "CreatedUsers", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SettingsCreateOneWithoutUserInput", + "name": "UserCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutCreatedByInput", + "name": "UserCreateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "LogedIns", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutUserInput", + "name": "LogedInCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "Files", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutUsersInput", + "name": "FileCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutCreatedByInput", + "name": "EthContractSourceCreateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TagCreateManyWithoutCreatedByInput", + "name": "EthAccountCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutCreatedByInput", + "name": "ResourceCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null @@ -272732,172 +129069,220 @@ "defaultValue": null }, { - "name": "EthContractSourcesCreated", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "EthAccounts", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Teams", + "name": "Votes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutUserInput", + "name": "VoteCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "NotificationTypes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutCreatedByInput", + "name": "NotificationTypeCreateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "NotificationTypesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutUserInput", + "name": "NotificationTypeCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCreatedByInput", + "name": "TagCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "ResourceTags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutUserInput", + "name": "ResourceTagCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "PrismaProjects", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutCreatedByInput", + "name": "ProjectCreateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "topics", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutCreatedByInput", + "name": "TopicCreateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutUsersInput", + "name": "CommentCreateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "Tarifs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutCreatedByInput", + "name": "UserTarifCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "Places", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LetterCreateManyWithoutUserInput", + "name": "PlaceCreateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserGroupCreateManyWithoutUsersInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "EthAccountAuthed", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutUserAuthedInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserGroupWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserGroupWhereUniqueInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "CodeChallengeCompletions", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutPrismaUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceCreateManyWithoutCreatedByInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Imports", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ImportCreateManyWithoutCreatedByInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "VoteCreateManyWithoutUserInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Career", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CareerCreateOneWithoutCreatedByInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "VoteWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null } @@ -272908,20 +129293,39 @@ }, { "kind": "INPUT_OBJECT", - "name": "UserCreateWithoutMessagesInput", + "name": "UserTarifCreateManyWithoutUserInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserTarifWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserCreateWithoutCommentsInput", + "description": null, + "fields": null, + "inputFields": [ { "name": "username", "description": null, @@ -273053,17 +129457,17 @@ "defaultValue": null }, { - "name": "sudo", + "name": "user_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "first_name", "description": null, "type": { "kind": "SCALAR", @@ -273073,37 +129477,27 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptNewChatRoomAnonymous", + "name": "middle_name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "last_name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "gender", "description": null, "type": { "kind": "SCALAR", @@ -273113,418 +129507,127 @@ "defaultValue": null }, { - "name": "Groups", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupCreateManyWithoutUsersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedUsers", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedUsersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "LogedIns", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInCreateManyWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Files", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "worlds", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "WorldCreateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "settings", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsCreateOneWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Resources", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Votes", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "NotificationTypes", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutUsersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "NotificationTypesCreated", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Tags", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TagCreateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ResourceTags", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Rooms", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutMembersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedRooms", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ReadedMessages", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateManyWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Notices", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeCreateManyWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "EthContractSourcesCreated", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "EthAccounts", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Teams", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "TeamsCreated", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Projects", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ProjectsCreated", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Tasks", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Timers", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "PositionsCreated", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Positions", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutUsersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "TasksReactions", + "name": "birth_date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "country_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetterCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "region_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutUserAuthedInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "city_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutPrismaUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "timezone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ImportCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Career", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CareerCreateOneWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateWithoutNoticesInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", + "name": "language_id", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "username", + "name": "num_blog_posts", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "email", + "name": "last", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "phone", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "showEmail", + "name": "notification", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "icq", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "www", "description": null, "type": { "kind": "SCALAR", @@ -273534,7 +129637,7 @@ "defaultValue": null }, { - "name": "fullname", + "name": "contact_email", "description": null, "type": { "kind": "SCALAR", @@ -273544,7 +129647,7 @@ "defaultValue": null }, { - "name": "image", + "name": "mobile_phone", "description": null, "type": { "kind": "SCALAR", @@ -273554,7 +129657,7 @@ "defaultValue": null }, { - "name": "address", + "name": "home_phone", "description": null, "type": { "kind": "SCALAR", @@ -273564,57 +129667,57 @@ "defaultValue": null }, { - "name": "active", + "name": "about", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "experience", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "job_title", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "work_place", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "sudo", + "name": "ip", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "confirmation_code", "description": null, "type": { "kind": "SCALAR", @@ -273624,41 +129727,41 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "rating", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "etherwallet", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "photo", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "sudo", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "defaultValue": null @@ -273714,21 +129817,21 @@ "defaultValue": null }, { - "name": "worlds", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "WorldCreateManyWithoutCreatedByInput", + "name": "EthContractSourceCreateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SettingsCreateOneWithoutUserInput", + "name": "EthAccountCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null @@ -273744,288 +129847,308 @@ "defaultValue": null }, { - "name": "Votes", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "NotificationTypes", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutUsersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "NotificationTypesCreated", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutCreatedByInput", + "name": "ChatRoomCreateManyWithoutMembersInput", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "CreatedRooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TagCreateManyWithoutCreatedByInput", + "name": "ChatRoomCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "Messages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutCreatedByInput", + "name": "ChatMessageCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "ReadedMessages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutMembersInput", + "name": "ChatMessageReadedCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "Notices", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutCreatedByInput", + "name": "NoticeCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "Votes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutCreatedByInput", + "name": "VoteCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "NotificationTypes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateManyWithoutUserInput", + "name": "NotificationTypeCreateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "NotificationTypesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateManyWithoutCreatedByInput", + "name": "NotificationTypeCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutCreatedByInput", + "name": "TagCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "ResourceTags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutUserInput", + "name": "ResourceTagCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "PrismaProjects", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutCreatedByInput", + "name": "ProjectCreateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "topics", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutUserInput", + "name": "TopicCreateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "Tarifs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCreatedByInput", + "name": "UserTarifCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "Account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutUserInput", + "name": "AccountCreateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "Places", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutCreatedByInput", + "name": "PlaceCreateManyWithoutOwnerInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserCreateWithoutCreatedByInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "username", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "showEmail", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "showPhone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetterCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "password", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutUserAuthedInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "fullname", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "image", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutPrismaUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ImportCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "active", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CareerCreateOneWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateWithoutNotificationTypesCreatedInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "activated", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "username", + "name": "deleted", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "hidden", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first_name", "description": null, "type": { "kind": "SCALAR", @@ -274035,7 +130158,7 @@ "defaultValue": null }, { - "name": "email", + "name": "middle_name", "description": null, "type": { "kind": "SCALAR", @@ -274045,7 +130168,7 @@ "defaultValue": null }, { - "name": "phone", + "name": "last_name", "description": null, "type": { "kind": "SCALAR", @@ -274055,57 +130178,57 @@ "defaultValue": null }, { - "name": "showEmail", + "name": "gender", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "birth_date", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "country_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "fullname", + "name": "region_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "image", + "name": "city_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "address", + "name": "status", "description": null, "type": { "kind": "SCALAR", @@ -274115,441 +130238,441 @@ "defaultValue": null }, { - "name": "active", + "name": "timezone", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "language_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "num_blog_posts", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "last", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "sudo", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "notification", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "icq", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "www", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "contact_email", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "mobile_phone", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Groups", + "name": "home_phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "about", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "experience", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "job_title", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "work_place", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "ip", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "WorldCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "confirmation_code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsCreateOneWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "rating", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "etherwallet", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "photo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "sudo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "Groups", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutCreatedByInput", + "name": "UserGroupCreateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "CreatedUsers", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutMembersInput", + "name": "UserCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "LogedIns", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutCreatedByInput", + "name": "LogedInCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "Files", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutCreatedByInput", + "name": "FileCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateManyWithoutUserInput", + "name": "EthContractSourceCreateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NoticeCreateManyWithoutUserInput", + "name": "EthAccountCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateManyWithoutCreatedByInput", + "name": "ResourceCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutCreatedByInput", + "name": "ChatRoomCreateManyWithoutMembersInput", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "CreatedRooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutUserInput", + "name": "ChatRoomCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "Messages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutCreatedByInput", + "name": "ChatMessageCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "ReadedMessages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutUserInput", + "name": "ChatMessageReadedCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "Notices", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCreatedByInput", + "name": "NoticeCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "Votes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutUserInput", + "name": "VoteCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "NotificationTypes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutCreatedByInput", + "name": "NotificationTypeCreateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "NotificationTypesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutCreatedByInput", + "name": "NotificationTypeCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutUsersInput", + "name": "TagCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "ResourceTags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutCreatedByInput", + "name": "ResourceTagCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "PrismaProjects", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LetterCreateManyWithoutUserInput", + "name": "ProjectCreateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "topics", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutUserAuthedInput", + "name": "TopicCreateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCreatedByInput", + "name": "CommentCreateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "Tarifs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutPrismaUsersInput", + "name": "UserTarifCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "Account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ImportCreateManyWithoutCreatedByInput", + "name": "AccountCreateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "Places", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CareerCreateOneWithoutCreatedByInput", + "name": "PlaceCreateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null @@ -274561,20 +130684,10 @@ }, { "kind": "INPUT_OBJECT", - "name": "UserCreateWithoutNotificationTypesInput", + "name": "UserCreateWithoutCreatedRoomsInput", "description": null, "fields": null, "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, { "name": "username", "description": null, @@ -274706,17 +130819,17 @@ "defaultValue": null }, { - "name": "sudo", + "name": "user_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "first_name", "description": null, "type": { "kind": "SCALAR", @@ -274726,37 +130839,47 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "middle_name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "last_name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "gender", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "birth_date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "country_id", "description": null, "type": { "kind": "SCALAR", @@ -274766,171 +130889,291 @@ "defaultValue": null }, { - "name": "Groups", + "name": "region_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "city_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "timezone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "language_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "num_blog_posts", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "WorldCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "last", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsCreateOneWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "notification", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "icq", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "www", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "contact_email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "mobile_phone", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "home_phone", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "about", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "experience", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "job_title", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "work_place", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "confirmation_code", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "rating", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "etherwallet", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "photo", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sudo", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Groups", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutMembersInput", + "name": "UserGroupCreateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "CreatedUsers", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutCreatedByInput", + "name": "UserCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutCreatedByInput", + "name": "UserCreateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "LogedIns", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateManyWithoutUserInput", + "name": "LogedInCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "Files", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NoticeCreateManyWithoutUserInput", + "name": "FileCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null @@ -274940,7 +131183,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateManyWithoutCreatedByInput", + "name": "EthContractSourceCreateManyInput", "ofType": null }, "defaultValue": null @@ -274956,151 +131199,161 @@ "defaultValue": null }, { - "name": "Teams", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutUserInput", + "name": "ResourceCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutCreatedByInput", + "name": "ChatRoomCreateManyWithoutMembersInput", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "Messages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutUserInput", + "name": "ChatMessageCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "ReadedMessages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCreatedByInput", + "name": "ChatMessageReadedCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "Notices", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutUserInput", + "name": "NoticeCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "Votes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutCreatedByInput", + "name": "VoteCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "NotificationTypes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutCreatedByInput", + "name": "NotificationTypeCreateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "NotificationTypesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutUsersInput", + "name": "NotificationTypeCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutCreatedByInput", + "name": "TagCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "ResourceTags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LetterCreateManyWithoutUserInput", + "name": "ResourceTagCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "PrismaProjects", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutUserAuthedInput", + "name": "ProjectCreateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "topics", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCreatedByInput", + "name": "TopicCreateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutPrismaUsersInput", + "name": "CommentCreateManyWithoutCreated_byInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Tarifs", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserTarifCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "Account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ImportCreateManyWithoutCreatedByInput", + "name": "AccountCreateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "Places", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CareerCreateOneWithoutCreatedByInput", + "name": "PlaceCreateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null @@ -275112,20 +131365,10 @@ }, { "kind": "INPUT_OBJECT", - "name": "UserCreateWithoutPositionsCreatedInput", + "name": "UserCreateWithoutCreatedUsersInput", "description": null, "fields": null, "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, { "name": "username", "description": null, @@ -275257,17 +131500,17 @@ "defaultValue": null }, { - "name": "sudo", + "name": "user_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "first_name", "description": null, "type": { "kind": "SCALAR", @@ -275277,548 +131520,548 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "middle_name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "last_name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "gender", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "birth_date", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Groups", + "name": "country_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "region_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "city_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "timezone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "language_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "WorldCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "num_blog_posts", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsCreateOneWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "last", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "notification", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "icq", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "www", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "contact_email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "mobile_phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutMembersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "home_phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "about", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "experience", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "job_title", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "work_place", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "ip", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "confirmation_code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "rating", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "etherwallet", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "photo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "sudo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "Groups", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutCreatedByInput", + "name": "UserGroupCreateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutUsersInput", + "name": "UserCreateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "LogedIns", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutCreatedByInput", + "name": "LogedInCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "Files", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LetterCreateManyWithoutUserInput", + "name": "FileCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutUserAuthedInput", + "name": "EthContractSourceCreateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCreatedByInput", + "name": "EthAccountCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutPrismaUsersInput", + "name": "ResourceCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ImportCreateManyWithoutCreatedByInput", + "name": "ChatRoomCreateManyWithoutMembersInput", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "CreatedRooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CareerCreateOneWithoutCreatedByInput", + "name": "ChatRoomCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateWithoutPositionsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "Messages", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "ChatMessageCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "username", + "name": "ReadedMessages", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "email", + "name": "Notices", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NoticeCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "phone", + "name": "Votes", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "VoteCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "showEmail", + "name": "NotificationTypes", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "NotificationTypeCreateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "NotificationTypesCreated", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "NotificationTypeCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "Tags", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "TagCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "fullname", + "name": "ResourceTags", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ResourceTagCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "image", + "name": "PrismaProjects", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ProjectCreateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "address", + "name": "topics", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "TopicCreateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "active", + "name": "comments", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "CommentCreateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "Tarifs", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserTarifCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "Account", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "AccountCreateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "Places", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "PlaceCreateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserCreateWithoutEthAccountsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "sudo", + "name": "username", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "email", "description": null, "type": { "kind": "SCALAR", @@ -275828,17 +132071,17 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "phone", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "showEmail", "description": null, "type": { "kind": "SCALAR", @@ -275848,7 +132091,7 @@ "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "showPhone", "description": null, "type": { "kind": "SCALAR", @@ -275858,378 +132101,257 @@ "defaultValue": null }, { - "name": "oldID", + "name": "password", "description": null, "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Groups", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupCreateManyWithoutUsersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedUsers", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedUsersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "LogedIns", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInCreateManyWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Files", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "worlds", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "WorldCreateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "settings", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsCreateOneWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Resources", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Votes", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "NotificationTypes", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutUsersInput", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "fullname", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "image", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "active", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutMembersInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "activated", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "deleted", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "hidden", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "user_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "first_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "middle_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "last_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "gender", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "birth_date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "country_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "region_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "city_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "timezone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "language_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetterCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "num_blog_posts", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutUserAuthedInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "last", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutPrismaUsersInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "notification", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ImportCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Career", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CareerCreateOneWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateWithoutPrismaProjectsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", + "name": "icq", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "username", + "name": "www", "description": null, "type": { "kind": "SCALAR", @@ -276239,7 +132361,7 @@ "defaultValue": null }, { - "name": "email", + "name": "contact_email", "description": null, "type": { "kind": "SCALAR", @@ -276249,7 +132371,7 @@ "defaultValue": null }, { - "name": "phone", + "name": "mobile_phone", "description": null, "type": { "kind": "SCALAR", @@ -276259,27 +132381,27 @@ "defaultValue": null }, { - "name": "showEmail", + "name": "home_phone", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "about", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "experience", "description": null, "type": { "kind": "SCALAR", @@ -276289,7 +132411,7 @@ "defaultValue": null }, { - "name": "fullname", + "name": "job_title", "description": null, "type": { "kind": "SCALAR", @@ -276299,7 +132421,7 @@ "defaultValue": null }, { - "name": "image", + "name": "work_place", "description": null, "type": { "kind": "SCALAR", @@ -276309,7 +132431,7 @@ "defaultValue": null }, { - "name": "address", + "name": "ip", "description": null, "type": { "kind": "SCALAR", @@ -276319,41 +132441,41 @@ "defaultValue": null }, { - "name": "active", + "name": "confirmation_code", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "rating", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "etherwallet", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "photo", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null @@ -276369,131 +132491,121 @@ "defaultValue": null }, { - "name": "marketplaceToken", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptChatMessageAnonymous", + "name": "Groups", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserGroupCreateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "CreatedUsers", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "LogedIns", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "LogedInCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Groups", + "name": "Files", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserGroupCreateManyWithoutUsersInput", + "name": "FileCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutCreatedByInput", + "name": "EthContractSourceCreateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedUsersInput", + "name": "ResourceCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LogedInCreateManyWithoutUserInput", + "name": "ChatRoomCreateManyWithoutMembersInput", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "CreatedRooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FileCreateManyWithoutCreatedByInput", + "name": "ChatRoomCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "Messages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "WorldCreateManyWithoutCreatedByInput", + "name": "ChatMessageCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "ReadedMessages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SettingsCreateOneWithoutUserInput", + "name": "ChatMessageReadedCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "Notices", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutCreatedByInput", + "name": "NoticeCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null @@ -276549,238 +132661,228 @@ "defaultValue": null }, { - "name": "Rooms", + "name": "PrismaProjects", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutMembersInput", + "name": "ProjectCreateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "topics", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutCreatedByInput", + "name": "TopicCreateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutCreatedByInput", + "name": "CommentCreateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "Tarifs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateManyWithoutUserInput", + "name": "UserTarifCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "Account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NoticeCreateManyWithoutUserInput", + "name": "AccountCreateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "Places", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateManyWithoutCreatedByInput", + "name": "PlaceCreateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserCreateWithoutFilesInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "EthAccounts", + "name": "username", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "showEmail", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "showPhone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "password", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "fullname", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "image", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "active", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "activated", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetterCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "deleted", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutUserAuthedInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "hidden", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "user_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ImportCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Career", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CareerCreateOneWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateWithoutProjectsCreatedInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", + "name": "first_name", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "username", + "name": "middle_name", "description": null, "type": { "kind": "SCALAR", @@ -276790,7 +132892,7 @@ "defaultValue": null }, { - "name": "email", + "name": "last_name", "description": null, "type": { "kind": "SCALAR", @@ -276800,57 +132902,57 @@ "defaultValue": null }, { - "name": "phone", + "name": "gender", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "showEmail", + "name": "birth_date", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "country_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "region_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "fullname", + "name": "city_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "image", + "name": "status", "description": null, "type": { "kind": "SCALAR", @@ -276860,7 +132962,7 @@ "defaultValue": null }, { - "name": "address", + "name": "timezone", "description": null, "type": { "kind": "SCALAR", @@ -276870,57 +132972,57 @@ "defaultValue": null }, { - "name": "active", + "name": "language_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "num_blog_posts", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "last", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "sudo", + "name": "notification", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "icq", "description": null, "type": { "kind": "SCALAR", @@ -276930,381 +133032,371 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "www", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "contact_email", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "mobile_phone", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "home_phone", "description": null, "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Groups", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupCreateManyWithoutUsersInput", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "about", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "experience", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "job_title", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "work_place", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "ip", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "WorldCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "confirmation_code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsCreateOneWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "rating", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "etherwallet", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "photo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "sudo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "Groups", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TagCreateManyWithoutCreatedByInput", + "name": "UserGroupCreateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "CreatedUsers", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutCreatedByInput", + "name": "UserCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutMembersInput", + "name": "UserCreateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "LogedIns", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutCreatedByInput", + "name": "LogedInCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutCreatedByInput", + "name": "EthContractSourceCreateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateManyWithoutUserInput", + "name": "EthAccountCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NoticeCreateManyWithoutUserInput", + "name": "ResourceCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateManyWithoutCreatedByInput", + "name": "ChatRoomCreateManyWithoutMembersInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "CreatedRooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutCreatedByInput", + "name": "ChatRoomCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "Messages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutUserInput", + "name": "ChatMessageCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "ReadedMessages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutCreatedByInput", + "name": "ChatMessageReadedCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "Notices", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutUserInput", + "name": "NoticeCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "Votes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutUserInput", + "name": "VoteCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "NotificationTypes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutCreatedByInput", + "name": "NotificationTypeCreateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "NotificationTypesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutCreatedByInput", + "name": "NotificationTypeCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutUsersInput", + "name": "TagCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "ResourceTags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutCreatedByInput", + "name": "ResourceTagCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "PrismaProjects", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LetterCreateManyWithoutUserInput", + "name": "ProjectCreateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "topics", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutUserAuthedInput", + "name": "TopicCreateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCreatedByInput", + "name": "CommentCreateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "Tarifs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutPrismaUsersInput", + "name": "UserTarifCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "Account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ImportCreateManyWithoutCreatedByInput", + "name": "AccountCreateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "Places", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CareerCreateOneWithoutCreatedByInput", + "name": "PlaceCreateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null @@ -277316,20 +133408,10 @@ }, { "kind": "INPUT_OBJECT", - "name": "UserCreateWithoutProjectsInput", + "name": "UserCreateWithoutGroupsInput", "description": null, "fields": null, "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, { "name": "username", "description": null, @@ -277461,17 +133543,17 @@ "defaultValue": null }, { - "name": "sudo", + "name": "user_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "first_name", "description": null, "type": { "kind": "SCALAR", @@ -277481,37 +133563,47 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "middle_name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "last_name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "gender", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "birth_date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "country_id", "description": null, "type": { "kind": "SCALAR", @@ -277521,181 +133613,281 @@ "defaultValue": null }, { - "name": "Groups", + "name": "region_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "city_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "timezone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "language_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "num_blog_posts", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "WorldCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "last", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsCreateOneWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "notification", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "icq", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "www", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "contact_email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "mobile_phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "home_phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutMembersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "about", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "experience", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "job_title", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "work_place", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "confirmation_code", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "rating", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "etherwallet", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "photo", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sudo", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "CreatedUsers", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutCreatedByInput", + "name": "UserCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutCreatedByInput", + "name": "UserCreateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "LogedIns", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateManyWithoutUserInput", + "name": "LogedInCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "Files", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NoticeCreateManyWithoutUserInput", + "name": "FileCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null @@ -277705,7 +133897,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateManyWithoutCreatedByInput", + "name": "EthContractSourceCreateManyInput", "ofType": null }, "defaultValue": null @@ -277721,111 +133913,111 @@ "defaultValue": null }, { - "name": "Teams", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutUserInput", + "name": "ResourceCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutCreatedByInput", + "name": "ChatRoomCreateManyWithoutMembersInput", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "CreatedRooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCreatedByInput", + "name": "ChatRoomCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "Messages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutUserInput", + "name": "ChatMessageCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "ReadedMessages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutCreatedByInput", + "name": "ChatMessageReadedCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "Notices", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutCreatedByInput", + "name": "NoticeCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "Votes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutUsersInput", + "name": "VoteCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "NotificationTypes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutCreatedByInput", + "name": "NotificationTypeCreateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "NotificationTypesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LetterCreateManyWithoutUserInput", + "name": "NotificationTypeCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutUserAuthedInput", + "name": "TagCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "ResourceTags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCreatedByInput", + "name": "ResourceTagCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null @@ -277841,21 +134033,51 @@ "defaultValue": null }, { - "name": "Imports", + "name": "topics", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TopicCreateManyWithoutCreated_byInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ImportCreateManyWithoutCreatedByInput", + "name": "CommentCreateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "Tarifs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CareerCreateOneWithoutCreatedByInput", + "name": "UserTarifCreateManyWithoutUserInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Account", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountCreateOneWithoutUserInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Places", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PlaceCreateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null @@ -277867,20 +134089,10 @@ }, { "kind": "INPUT_OBJECT", - "name": "UserCreateWithoutReadedMessagesInput", + "name": "UserCreateWithoutLogedInsInput", "description": null, "fields": null, "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, { "name": "username", "description": null, @@ -278012,17 +134224,17 @@ "defaultValue": null }, { - "name": "sudo", + "name": "user_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "first_name", "description": null, "type": { "kind": "SCALAR", @@ -278032,548 +134244,548 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "middle_name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "last_name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "gender", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "birth_date", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Groups", + "name": "country_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "region_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "city_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "timezone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "language_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "WorldCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "num_blog_posts", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsCreateOneWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "last", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "notification", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "icq", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "www", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "contact_email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "mobile_phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutMembersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "home_phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "about", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "experience", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "job_title", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "work_place", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "ip", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "confirmation_code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "rating", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "etherwallet", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "photo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "sudo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "Groups", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutCreatedByInput", + "name": "UserGroupCreateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "CreatedUsers", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutUsersInput", + "name": "UserCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutCreatedByInput", + "name": "UserCreateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "Files", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LetterCreateManyWithoutUserInput", + "name": "FileCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutUserAuthedInput", + "name": "EthContractSourceCreateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCreatedByInput", + "name": "EthAccountCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutPrismaUsersInput", + "name": "ResourceCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ImportCreateManyWithoutCreatedByInput", + "name": "ChatRoomCreateManyWithoutMembersInput", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "CreatedRooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CareerCreateOneWithoutCreatedByInput", + "name": "ChatRoomCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateWithoutResourcesInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "Messages", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "ChatMessageCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "username", + "name": "ReadedMessages", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "email", + "name": "Notices", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NoticeCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "phone", + "name": "Votes", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "VoteCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "showEmail", + "name": "NotificationTypes", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "NotificationTypeCreateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "NotificationTypesCreated", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "NotificationTypeCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "Tags", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "TagCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "fullname", + "name": "ResourceTags", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ResourceTagCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "image", + "name": "PrismaProjects", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ProjectCreateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "address", + "name": "topics", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "TopicCreateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "active", + "name": "comments", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "CommentCreateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "Tarifs", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserTarifCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "Account", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "AccountCreateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "Places", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "PlaceCreateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserCreateWithoutMessagesInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "sudo", + "name": "username", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "email", "description": null, "type": { "kind": "SCALAR", @@ -278583,17 +134795,17 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "phone", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "showEmail", "description": null, "type": { "kind": "SCALAR", @@ -278603,7 +134815,7 @@ "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "showPhone", "description": null, "type": { "kind": "SCALAR", @@ -278613,378 +134825,337 @@ "defaultValue": null }, { - "name": "oldID", + "name": "password", "description": null, "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Groups", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupCreateManyWithoutUsersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedUsers", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutCreatedByInput", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "fullname", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "image", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "active", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "WorldCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "activated", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsCreateOneWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "deleted", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "hidden", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "user_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "first_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "middle_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "last_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutMembersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "gender", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "birth_date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "country_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "region_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "city_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "timezone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "language_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "num_blog_posts", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "last", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "notification", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "icq", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "www", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "contact_email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "mobile_phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetterCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "home_phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutUserAuthedInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "about", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "experience", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutPrismaUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "job_title", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ImportCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Career", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CareerCreateOneWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateWithoutResourceTagsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", + "name": "work_place", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "username", + "name": "ip", "description": null, "type": { "kind": "SCALAR", @@ -278994,7 +135165,7 @@ "defaultValue": null }, { - "name": "email", + "name": "confirmation_code", "description": null, "type": { "kind": "SCALAR", @@ -279004,588 +135175,588 @@ "defaultValue": null }, { - "name": "phone", + "name": "rating", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "showEmail", + "name": "etherwallet", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "photo", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "sudo", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "fullname", + "name": "Groups", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserGroupCreateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "image", + "name": "CreatedUsers", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "address", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "active", + "name": "LogedIns", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "LogedInCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "Files", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "FileCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "EthContractSourcesCreated", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "EthContractSourceCreateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "EthAccounts", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "EthAccountCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "sudo", + "name": "Resources", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "ResourceCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "Rooms", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ChatRoomCreateManyWithoutMembersInput", "ofType": null }, "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "CreatedRooms", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "ChatRoomCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "ReadedMessages", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "Notices", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "NoticeCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "Votes", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "VoteCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Groups", + "name": "NotificationTypes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserGroupCreateManyWithoutUsersInput", + "name": "NotificationTypeCreateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "NotificationTypesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutCreatedByInput", + "name": "NotificationTypeCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedUsersInput", + "name": "TagCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "ResourceTags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LogedInCreateManyWithoutUserInput", + "name": "ResourceTagCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "PrismaProjects", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FileCreateManyWithoutCreatedByInput", + "name": "ProjectCreateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "topics", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "WorldCreateManyWithoutCreatedByInput", + "name": "TopicCreateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SettingsCreateOneWithoutUserInput", + "name": "CommentCreateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "Tarifs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutCreatedByInput", + "name": "UserTarifCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "Account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutUserInput", + "name": "AccountCreateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "Places", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutUsersInput", + "name": "PlaceCreateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserCreateWithoutNoticesInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "NotificationTypesCreated", + "name": "username", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutMembersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "showEmail", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "showPhone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "password", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "fullname", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "image", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "active", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "activated", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "deleted", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "hidden", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "user_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "first_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "middle_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "last_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "gender", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "birth_date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetterCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "country_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutUserAuthedInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "region_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "city_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutPrismaUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ImportCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "timezone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CareerCreateOneWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateWithoutRoomsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "language_id", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "username", + "name": "num_blog_posts", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "email", + "name": "last", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "phone", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "showEmail", + "name": "notification", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "icq", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "www", "description": null, "type": { "kind": "SCALAR", @@ -279595,7 +135766,7 @@ "defaultValue": null }, { - "name": "fullname", + "name": "contact_email", "description": null, "type": { "kind": "SCALAR", @@ -279605,7 +135776,7 @@ "defaultValue": null }, { - "name": "image", + "name": "mobile_phone", "description": null, "type": { "kind": "SCALAR", @@ -279615,7 +135786,7 @@ "defaultValue": null }, { - "name": "address", + "name": "home_phone", "description": null, "type": { "kind": "SCALAR", @@ -279625,57 +135796,57 @@ "defaultValue": null }, { - "name": "active", + "name": "about", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "experience", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "job_title", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "work_place", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "sudo", + "name": "ip", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "confirmation_code", "description": null, "type": { "kind": "SCALAR", @@ -279685,41 +135856,41 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "rating", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "etherwallet", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "photo", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "sudo", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "defaultValue": null @@ -279775,21 +135946,21 @@ "defaultValue": null }, { - "name": "worlds", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "WorldCreateManyWithoutCreatedByInput", + "name": "EthContractSourceCreateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SettingsCreateOneWithoutUserInput", + "name": "EthAccountCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null @@ -279804,6 +135975,46 @@ }, "defaultValue": null }, + { + "name": "Rooms", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomCreateManyWithoutMembersInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "CreatedRooms", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomCreateManyWithoutCreatedByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Messages", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageCreateManyWithoutCreatedByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ReadedMessages", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedCreateManyWithoutUserInput", + "ofType": null + }, + "defaultValue": null + }, { "name": "Votes", "description": null, @@ -279855,238 +136066,238 @@ "defaultValue": null }, { - "name": "CreatedRooms", + "name": "PrismaProjects", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutCreatedByInput", + "name": "ProjectCreateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "topics", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutCreatedByInput", + "name": "TopicCreateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateManyWithoutUserInput", + "name": "CommentCreateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "Tarifs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NoticeCreateManyWithoutUserInput", + "name": "UserTarifCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "Account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateManyWithoutCreatedByInput", + "name": "AccountCreateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "Places", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutCreatedByInput", + "name": "PlaceCreateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserCreateWithoutNotificationTypesCreatedInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Teams", + "name": "username", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "showEmail", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "showPhone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "password", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "fullname", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "image", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "active", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetterCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "activated", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutUserAuthedInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "deleted", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "hidden", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutPrismaUsersInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "user_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ImportCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "first_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CareerCreateOneWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateWithoutSettingsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "middle_name", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "username", + "name": "last_name", "description": null, "type": { "kind": "SCALAR", @@ -280096,57 +136307,57 @@ "defaultValue": null }, { - "name": "email", + "name": "gender", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "phone", + "name": "birth_date", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "showEmail", + "name": "country_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "region_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "city_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "fullname", + "name": "status", "description": null, "type": { "kind": "SCALAR", @@ -280156,7 +136367,7 @@ "defaultValue": null }, { - "name": "image", + "name": "timezone", "description": null, "type": { "kind": "SCALAR", @@ -280166,7 +136377,57 @@ "defaultValue": null }, { - "name": "address", + "name": "language_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "num_blog_posts", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "created_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "notification", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "icq", "description": null, "type": { "kind": "SCALAR", @@ -280176,57 +136437,57 @@ "defaultValue": null }, { - "name": "active", + "name": "www", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "contact_email", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "mobile_phone", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "home_phone", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "sudo", + "name": "about", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "experience", "description": null, "type": { "kind": "SCALAR", @@ -280236,161 +136497,161 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "job_title", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "work_place", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "ip", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "confirmation_code", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Groups", + "name": "rating", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "etherwallet", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "photo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "sudo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "Groups", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FileCreateManyWithoutCreatedByInput", + "name": "UserGroupCreateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "CreatedUsers", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "WorldCreateManyWithoutCreatedByInput", + "name": "UserCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutCreatedByInput", + "name": "UserCreateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "LogedIns", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutUserInput", + "name": "LogedInCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "Files", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutUsersInput", + "name": "FileCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutCreatedByInput", + "name": "EthContractSourceCreateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TagCreateManyWithoutCreatedByInput", + "name": "EthAccountCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutCreatedByInput", + "name": "ResourceCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null @@ -280446,198 +136707,198 @@ "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "Votes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateManyWithoutCreatedByInput", + "name": "VoteCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "NotificationTypes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutCreatedByInput", + "name": "NotificationTypeCreateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutUserInput", + "name": "TagCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "ResourceTags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutCreatedByInput", + "name": "ResourceTagCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "PrismaProjects", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutUserInput", + "name": "ProjectCreateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "topics", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCreatedByInput", + "name": "TopicCreateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutUserInput", + "name": "CommentCreateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "Tarifs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutCreatedByInput", + "name": "UserTarifCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "Account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutCreatedByInput", + "name": "AccountCreateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "Places", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutUsersInput", + "name": "PlaceCreateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserCreateWithoutNotificationTypesInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "TasksReactions", + "name": "username", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetterCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutUserAuthedInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "showEmail", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "showPhone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutPrismaUsersInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "password", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ImportCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "fullname", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CareerCreateOneWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateWithoutTagsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "image", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "username", + "name": "address", "description": null, "type": { "kind": "SCALAR", @@ -280647,27 +136908,27 @@ "defaultValue": null }, { - "name": "email", + "name": "active", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "phone", + "name": "activated", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "showEmail", + "name": "deleted", "description": null, "type": { "kind": "SCALAR", @@ -280677,7 +136938,7 @@ "defaultValue": null }, { - "name": "showPhone", + "name": "hidden", "description": null, "type": { "kind": "SCALAR", @@ -280687,17 +136948,17 @@ "defaultValue": null }, { - "name": "password", + "name": "user_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "fullname", + "name": "first_name", "description": null, "type": { "kind": "SCALAR", @@ -280707,7 +136968,7 @@ "defaultValue": null }, { - "name": "image", + "name": "middle_name", "description": null, "type": { "kind": "SCALAR", @@ -280717,7 +136978,7 @@ "defaultValue": null }, { - "name": "address", + "name": "last_name", "description": null, "type": { "kind": "SCALAR", @@ -280727,57 +136988,57 @@ "defaultValue": null }, { - "name": "active", + "name": "gender", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "birth_date", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "country_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "region_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "sudo", + "name": "city_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "status", "description": null, "type": { "kind": "SCALAR", @@ -280787,37 +137048,37 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "timezone", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "language_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "num_blog_posts", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "last", "description": null, "type": { "kind": "SCALAR", @@ -280827,171 +137088,221 @@ "defaultValue": null }, { - "name": "Groups", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "notification", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "icq", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "www", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "contact_email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "mobile_phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "WorldCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "home_phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsCreateOneWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "about", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "experience", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "job_title", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "work_place", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "ip", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "confirmation_code", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "rating", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "etherwallet", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "photo", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sudo", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Groups", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutMembersInput", + "name": "UserGroupCreateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "CreatedUsers", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutCreatedByInput", + "name": "UserCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutCreatedByInput", + "name": "UserCreateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "LogedIns", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateManyWithoutUserInput", + "name": "LogedInCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "Files", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NoticeCreateManyWithoutUserInput", + "name": "FileCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null @@ -281001,7 +137312,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateManyWithoutCreatedByInput", + "name": "EthContractSourceCreateManyInput", "ofType": null }, "defaultValue": null @@ -281017,151 +137328,161 @@ "defaultValue": null }, { - "name": "Teams", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutUserInput", + "name": "ResourceCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutCreatedByInput", + "name": "ChatRoomCreateManyWithoutMembersInput", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "CreatedRooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutUserInput", + "name": "ChatRoomCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "Messages", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageCreateManyWithoutCreatedByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ReadedMessages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCreatedByInput", + "name": "ChatMessageReadedCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "Notices", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutUserInput", + "name": "NoticeCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "Votes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutCreatedByInput", + "name": "VoteCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "NotificationTypesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutCreatedByInput", + "name": "NotificationTypeCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutUsersInput", + "name": "TagCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "ResourceTags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutCreatedByInput", + "name": "ResourceTagCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "PrismaProjects", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LetterCreateManyWithoutUserInput", + "name": "ProjectCreateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "topics", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutUserAuthedInput", + "name": "TopicCreateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCreatedByInput", + "name": "CommentCreateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "Tarifs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutPrismaUsersInput", + "name": "UserTarifCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "Account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ImportCreateManyWithoutCreatedByInput", + "name": "AccountCreateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "Places", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CareerCreateOneWithoutCreatedByInput", + "name": "PlaceCreateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null @@ -281173,20 +137494,10 @@ }, { "kind": "INPUT_OBJECT", - "name": "UserCreateWithoutTasksInput", + "name": "UserCreateWithoutPlacesInput", "description": null, "fields": null, "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, { "name": "username", "description": null, @@ -281318,17 +137629,17 @@ "defaultValue": null }, { - "name": "sudo", + "name": "user_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "first_name", "description": null, "type": { "kind": "SCALAR", @@ -281338,37 +137649,47 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "middle_name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "last_name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "gender", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "birth_date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "country_id", "description": null, "type": { "kind": "SCALAR", @@ -281378,181 +137699,291 @@ "defaultValue": null }, { - "name": "Groups", + "name": "region_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "city_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "timezone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "language_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "num_blog_posts", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "WorldCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "last", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsCreateOneWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "notification", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "icq", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "www", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "contact_email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "mobile_phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "home_phone", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "about", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "experience", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "job_title", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "work_place", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "confirmation_code", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "rating", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "etherwallet", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "photo", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sudo", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Groups", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutMembersInput", + "name": "UserGroupCreateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "CreatedUsers", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutCreatedByInput", + "name": "UserCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutCreatedByInput", + "name": "UserCreateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "LogedIns", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateManyWithoutUserInput", + "name": "LogedInCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "Files", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NoticeCreateManyWithoutUserInput", + "name": "FileCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null @@ -281562,7 +137993,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateManyWithoutCreatedByInput", + "name": "EthContractSourceCreateManyInput", "ofType": null }, "defaultValue": null @@ -281578,111 +138009,111 @@ "defaultValue": null }, { - "name": "Teams", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutUserInput", + "name": "ResourceCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutCreatedByInput", + "name": "ChatRoomCreateManyWithoutMembersInput", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "CreatedRooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutUserInput", + "name": "ChatRoomCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "Messages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCreatedByInput", + "name": "ChatMessageCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "ReadedMessages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutCreatedByInput", + "name": "ChatMessageReadedCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "Notices", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutCreatedByInput", + "name": "NoticeCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "Votes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutUsersInput", + "name": "VoteCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "NotificationTypes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutCreatedByInput", + "name": "NotificationTypeCreateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "NotificationTypesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LetterCreateManyWithoutUserInput", + "name": "NotificationTypeCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutUserAuthedInput", + "name": "TagCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "ResourceTags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCreatedByInput", + "name": "ResourceTagCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null @@ -281698,21 +138129,41 @@ "defaultValue": null }, { - "name": "Imports", + "name": "topics", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TopicCreateManyWithoutCreated_byInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "comments", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CommentCreateManyWithoutCreated_byInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Tarifs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ImportCreateManyWithoutCreatedByInput", + "name": "UserTarifCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "Account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CareerCreateOneWithoutCreatedByInput", + "name": "AccountCreateOneWithoutUserInput", "ofType": null }, "defaultValue": null @@ -281724,20 +138175,10 @@ }, { "kind": "INPUT_OBJECT", - "name": "UserCreateWithoutTasksReactionsInput", + "name": "UserCreateWithoutPrismaProjectsInput", "description": null, "fields": null, "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, { "name": "username", "description": null, @@ -281869,17 +138310,17 @@ "defaultValue": null }, { - "name": "sudo", + "name": "user_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "first_name", "description": null, "type": { "kind": "SCALAR", @@ -281889,548 +138330,548 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "middle_name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "last_name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "gender", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "birth_date", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Groups", + "name": "country_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "region_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "city_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "timezone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "language_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "WorldCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "num_blog_posts", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsCreateOneWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "last", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "notification", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "icq", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "www", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "contact_email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "mobile_phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutMembersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "home_phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "about", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "experience", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "job_title", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "work_place", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "ip", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "confirmation_code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "rating", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "etherwallet", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "photo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "sudo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "Groups", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutCreatedByInput", + "name": "UserGroupCreateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "CreatedUsers", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutCreatedByInput", + "name": "UserCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutUsersInput", + "name": "UserCreateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "LogedIns", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LetterCreateManyWithoutUserInput", + "name": "LogedInCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "Files", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutUserAuthedInput", + "name": "FileCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCreatedByInput", + "name": "EthContractSourceCreateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutPrismaUsersInput", + "name": "EthAccountCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ImportCreateManyWithoutCreatedByInput", + "name": "ResourceCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CareerCreateOneWithoutCreatedByInput", + "name": "ChatRoomCreateManyWithoutMembersInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateWithoutTeamsCreatedInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "CreatedRooms", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "ChatRoomCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "username", + "name": "Messages", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ChatMessageCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "email", + "name": "ReadedMessages", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "phone", + "name": "Notices", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NoticeCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "showEmail", + "name": "Votes", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "VoteCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "NotificationTypes", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "NotificationTypeCreateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "NotificationTypesCreated", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotificationTypeCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "fullname", + "name": "Tags", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "TagCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "image", + "name": "ResourceTags", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ResourceTagCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "address", + "name": "topics", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "TopicCreateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "active", + "name": "comments", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "CommentCreateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "Tarifs", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserTarifCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "Account", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "AccountCreateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "Places", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "PlaceCreateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserCreateWithoutReadedMessagesInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "sudo", + "name": "username", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "email", "description": null, "type": { "kind": "SCALAR", @@ -282440,17 +138881,17 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "phone", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "showEmail", "description": null, "type": { "kind": "SCALAR", @@ -282460,7 +138901,7 @@ "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "showPhone", "description": null, "type": { "kind": "SCALAR", @@ -282470,378 +138911,257 @@ "defaultValue": null }, { - "name": "oldID", + "name": "password", "description": null, "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Groups", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupCreateManyWithoutUsersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedUsers", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedUsersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "LogedIns", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInCreateManyWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Files", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "worlds", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "WorldCreateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "settings", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsCreateOneWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Resources", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Votes", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "NotificationTypes", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutUsersInput", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "fullname", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "image", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "active", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutMembersInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "activated", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "deleted", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "hidden", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "user_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "first_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "middle_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "last_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "gender", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "birth_date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "country_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "region_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "city_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "timezone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "language_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetterCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "num_blog_posts", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutUserAuthedInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "last", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutPrismaUsersInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "notification", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ImportCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Career", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CareerCreateOneWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateWithoutTeamsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", + "name": "icq", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "username", + "name": "www", "description": null, "type": { "kind": "SCALAR", @@ -282851,7 +139171,7 @@ "defaultValue": null }, { - "name": "email", + "name": "contact_email", "description": null, "type": { "kind": "SCALAR", @@ -282861,7 +139181,7 @@ "defaultValue": null }, { - "name": "phone", + "name": "mobile_phone", "description": null, "type": { "kind": "SCALAR", @@ -282871,27 +139191,27 @@ "defaultValue": null }, { - "name": "showEmail", + "name": "home_phone", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "about", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "experience", "description": null, "type": { "kind": "SCALAR", @@ -282901,7 +139221,7 @@ "defaultValue": null }, { - "name": "fullname", + "name": "job_title", "description": null, "type": { "kind": "SCALAR", @@ -282911,7 +139231,7 @@ "defaultValue": null }, { - "name": "image", + "name": "work_place", "description": null, "type": { "kind": "SCALAR", @@ -282921,7 +139241,7 @@ "defaultValue": null }, { - "name": "address", + "name": "ip", "description": null, "type": { "kind": "SCALAR", @@ -282931,41 +139251,41 @@ "defaultValue": null }, { - "name": "active", + "name": "confirmation_code", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "rating", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "etherwallet", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "photo", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null @@ -282981,131 +139301,121 @@ "defaultValue": null }, { - "name": "marketplaceToken", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptChatMessageAnonymous", + "name": "Groups", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserGroupCreateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "CreatedUsers", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "LogedIns", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "LogedInCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Groups", + "name": "Files", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserGroupCreateManyWithoutUsersInput", + "name": "FileCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutCreatedByInput", + "name": "EthContractSourceCreateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedUsersInput", + "name": "EthAccountCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LogedInCreateManyWithoutUserInput", + "name": "ResourceCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FileCreateManyWithoutCreatedByInput", + "name": "ChatRoomCreateManyWithoutMembersInput", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "CreatedRooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "WorldCreateManyWithoutCreatedByInput", + "name": "ChatRoomCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "Messages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SettingsCreateOneWithoutUserInput", + "name": "ChatMessageCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "Notices", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutCreatedByInput", + "name": "NoticeCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null @@ -283161,238 +139471,238 @@ "defaultValue": null }, { - "name": "Rooms", + "name": "PrismaProjects", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutMembersInput", + "name": "ProjectCreateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "topics", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutCreatedByInput", + "name": "TopicCreateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutCreatedByInput", + "name": "CommentCreateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "Tarifs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateManyWithoutUserInput", + "name": "UserTarifCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "Account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NoticeCreateManyWithoutUserInput", + "name": "AccountCreateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "Places", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateManyWithoutCreatedByInput", + "name": "PlaceCreateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserCreateWithoutResourcesInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "EthAccounts", + "name": "username", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "showEmail", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "showPhone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "password", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "fullname", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "image", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "active", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetterCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "activated", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutUserAuthedInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "deleted", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "hidden", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutPrismaUsersInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "user_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ImportCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "first_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CareerCreateOneWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateWithoutTimersInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "middle_name", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "username", + "name": "last_name", "description": null, "type": { "kind": "SCALAR", @@ -283402,7 +139712,57 @@ "defaultValue": null }, { - "name": "email", + "name": "gender", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "birth_date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "country_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "region_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "city_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "status", "description": null, "type": { "kind": "SCALAR", @@ -283412,7 +139772,7 @@ "defaultValue": null }, { - "name": "phone", + "name": "timezone", "description": null, "type": { "kind": "SCALAR", @@ -283422,27 +139782,57 @@ "defaultValue": null }, { - "name": "showEmail", + "name": "language_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "num_blog_posts", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "created_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "notification", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "icq", "description": null, "type": { "kind": "SCALAR", @@ -283452,7 +139842,7 @@ "defaultValue": null }, { - "name": "fullname", + "name": "www", "description": null, "type": { "kind": "SCALAR", @@ -283462,7 +139852,7 @@ "defaultValue": null }, { - "name": "image", + "name": "contact_email", "description": null, "type": { "kind": "SCALAR", @@ -283472,7 +139862,7 @@ "defaultValue": null }, { - "name": "address", + "name": "mobile_phone", "description": null, "type": { "kind": "SCALAR", @@ -283482,57 +139872,57 @@ "defaultValue": null }, { - "name": "active", + "name": "home_phone", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "about", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "experience", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "job_title", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "sudo", + "name": "work_place", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "ip", "description": null, "type": { "kind": "SCALAR", @@ -283542,41 +139932,51 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "confirmation_code", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "rating", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "etherwallet", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "photo", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sudo", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null @@ -283632,318 +140032,338 @@ "defaultValue": null }, { - "name": "worlds", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "WorldCreateManyWithoutCreatedByInput", + "name": "EthContractSourceCreateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SettingsCreateOneWithoutUserInput", + "name": "EthAccountCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutCreatedByInput", + "name": "ChatRoomCreateManyWithoutMembersInput", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "CreatedRooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutUserInput", + "name": "ChatRoomCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "Messages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutUsersInput", + "name": "ChatMessageCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "ReadedMessages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutCreatedByInput", + "name": "ChatMessageReadedCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "Notices", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NoticeCreateManyWithoutUserInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Votes", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "VoteCreateManyWithoutUserInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "NotificationTypes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TagCreateManyWithoutCreatedByInput", + "name": "NotificationTypeCreateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "NotificationTypesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutCreatedByInput", + "name": "NotificationTypeCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutMembersInput", + "name": "TagCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "ResourceTags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutCreatedByInput", + "name": "ResourceTagCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "PrismaProjects", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutCreatedByInput", + "name": "ProjectCreateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "topics", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateManyWithoutUserInput", + "name": "TopicCreateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NoticeCreateManyWithoutUserInput", + "name": "CommentCreateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "Tarifs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateManyWithoutCreatedByInput", + "name": "UserTarifCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "Account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutCreatedByInput", + "name": "AccountCreateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "Places", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutUserInput", + "name": "PlaceCreateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserCreateWithoutResourceTagsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "TeamsCreated", + "name": "username", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "showEmail", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "showPhone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "password", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "fullname", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "image", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetterCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutUserAuthedInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "active", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "activated", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutPrismaUsersInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "deleted", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ImportCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "hidden", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CareerCreateOneWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserCreateWithoutVotesInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "user_id", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "username", + "name": "first_name", "description": null, "type": { "kind": "SCALAR", @@ -283953,7 +140373,7 @@ "defaultValue": null }, { - "name": "email", + "name": "middle_name", "description": null, "type": { "kind": "SCALAR", @@ -283963,7 +140383,7 @@ "defaultValue": null }, { - "name": "phone", + "name": "last_name", "description": null, "type": { "kind": "SCALAR", @@ -283973,57 +140393,57 @@ "defaultValue": null }, { - "name": "showEmail", + "name": "gender", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "birth_date", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "country_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "fullname", + "name": "region_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "image", + "name": "city_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "address", + "name": "status", "description": null, "type": { "kind": "SCALAR", @@ -284033,441 +140453,441 @@ "defaultValue": null }, { - "name": "active", + "name": "timezone", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "language_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "num_blog_posts", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "last", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "sudo", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "notification", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "icq", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "www", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "contact_email", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "mobile_phone", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Groups", + "name": "home_phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "about", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "experience", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "job_title", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "work_place", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "ip", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "WorldCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "confirmation_code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsCreateOneWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "rating", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "etherwallet", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "photo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "sudo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "Groups", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutCreatedByInput", + "name": "UserGroupCreateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "CreatedUsers", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutMembersInput", + "name": "UserCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutCreatedByInput", + "name": "UserCreateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "LogedIns", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutCreatedByInput", + "name": "LogedInCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "Files", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateManyWithoutUserInput", + "name": "FileCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NoticeCreateManyWithoutUserInput", + "name": "EthContractSourceCreateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateManyWithoutCreatedByInput", + "name": "EthAccountCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutCreatedByInput", + "name": "ResourceCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutUserInput", + "name": "ChatRoomCreateManyWithoutMembersInput", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "CreatedRooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutCreatedByInput", + "name": "ChatRoomCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "Messages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutUserInput", + "name": "ChatMessageCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "ReadedMessages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCreatedByInput", + "name": "ChatMessageReadedCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "Notices", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutUserInput", + "name": "NoticeCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "Votes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutCreatedByInput", + "name": "VoteCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "NotificationTypes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutCreatedByInput", + "name": "NotificationTypeCreateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "NotificationTypesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutUsersInput", + "name": "NotificationTypeCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutCreatedByInput", + "name": "TagCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "PrismaProjects", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LetterCreateManyWithoutUserInput", + "name": "ProjectCreateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "topics", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutUserAuthedInput", + "name": "TopicCreateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCreatedByInput", + "name": "CommentCreateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "Tarifs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutPrismaUsersInput", + "name": "UserTarifCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "Account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ImportCreateManyWithoutCreatedByInput", + "name": "AccountCreateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "Places", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CareerCreateOneWithoutCreatedByInput", + "name": "PlaceCreateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null @@ -284479,20 +140899,10 @@ }, { "kind": "INPUT_OBJECT", - "name": "UserCreateWithoutWorldsInput", + "name": "UserCreateWithoutRoomsInput", "description": null, "fields": null, "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, { "name": "username", "description": null, @@ -284624,17 +141034,17 @@ "defaultValue": null }, { - "name": "sudo", + "name": "user_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "first_name", "description": null, "type": { "kind": "SCALAR", @@ -284644,883 +141054,521 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "middle_name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "last_name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "gender", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "birth_date", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Groups", + "name": "country_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "region_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "city_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutCreatedUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "timezone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "language_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsCreateOneWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "num_blog_posts", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "last", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "notification", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "icq", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "www", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "contact_email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutMembersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "mobile_phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "home_phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "about", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "experience", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "job_title", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "work_place", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "ip", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "confirmation_code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "rating", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "etherwallet", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "photo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberCreateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "sudo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerCreateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "Groups", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutCreatedByInput", + "name": "UserGroupCreateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "CreatedUsers", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionCreateManyWithoutUsersInput", + "name": "UserCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskReactionCreateManyWithoutCreatedByInput", + "name": "UserCreateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "LogedIns", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LetterCreateManyWithoutUserInput", + "name": "LogedInCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "Files", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountCreateOneWithoutUserAuthedInput", + "name": "FileCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionCreateManyWithoutCreatedByInput", + "name": "EthContractSourceCreateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCreateManyWithoutPrismaUsersInput", + "name": "EthAccountCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ImportCreateManyWithoutCreatedByInput", + "name": "ResourceCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "CreatedRooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CareerCreateOneWithoutCreatedByInput", + "name": "ChatRoomCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UserGroupConnection", - "description": "A connection to a list of items.", - "fields": [ - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UserGroupEdge", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AggregateUserGroup", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UserGroupEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "node", - "description": "The item at the end of the edge.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UserGroup", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserGroupCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", + "name": "Messages", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "ChatMessageCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "ReadedMessages", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedCreateManyWithoutUserInput", + "ofType": null }, "defaultValue": null }, { - "name": "Users", + "name": "Notices", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateManyWithoutGroupsInput", + "name": "NoticeCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserGroupCreateWithoutUsersInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "Votes", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "VoteCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "NotificationTypes", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "NotificationTypeCreateManyWithoutUsersInput", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UserGroupPreviousValues", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UserGroupSubscriptionPayload", - "description": null, - "fields": [ - { - "name": "mutation", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "node", + "name": "NotificationTypesCreated", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "UserGroup", + "kind": "INPUT_OBJECT", + "name": "NotificationTypeCreateManyWithoutCreatedByInput", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedFields", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "previousValues", + "name": "Tags", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "UserGroupPreviousValues", + "kind": "INPUT_OBJECT", + "name": "TagCreateManyWithoutCreatedByInput", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserGroupSubscriptionWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserGroupSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "Logical OR on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserGroupSubscriptionWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserGroupSubscriptionWhereInput", - "ofType": null - } - } - }, "defaultValue": null }, { - "name": "mutation_in", - "description": "The subscription event gets dispatched when it's listed in mutation_in", + "name": "ResourceTags", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MutationType", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "ResourceTagCreateManyWithoutCreatedByInput", + "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains", - "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", + "name": "PrismaProjects", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ProjectCreateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains_every", - "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", + "name": "topics", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "TopicCreateManyWithoutCreated_byInput", + "ofType": null }, "defaultValue": null }, { - "name": "updatedFields_contains_some", - "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", + "name": "comments", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "CommentCreateManyWithoutCreated_byInput", + "ofType": null }, "defaultValue": null }, { - "name": "node", + "name": "Tarifs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserGroupWhereInput", + "name": "UserTarifCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", + "name": "Account", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "AccountCreateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Users", + "name": "Places", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutGroupsInput", + "name": "PlaceCreateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null @@ -285532,113 +141580,32 @@ }, { "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutGroupsInput", + "name": "UserCreateWithoutTagsInput", "description": null, "fields": null, "inputFields": [ { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "set", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "disconnect", + "name": "username", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "updateMany", + "name": "email", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithWhereNestedInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "deleteMany", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserScalarWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", + "name": "phone", "description": null, "type": { "kind": "SCALAR", @@ -285646,237 +141613,159 @@ "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateWithoutUsersDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", + "name": "showEmail", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateWithWhereUniqueWithoutUsersInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "showPhone", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserGroupWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null }, { - "name": "data", + "name": "password", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateWithoutUsersDataInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserGroupUpsertWithWhereUniqueWithoutUsersInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "fullname", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserGroupWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyCreateWithoutTechnologyInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "image", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "components", + "name": "address", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "date_from", + "name": "active", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "date_till", + "name": "activated", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "status", + "name": "deleted", "description": null, "type": { - "kind": "ENUM", - "name": "UserTechnologyStatus", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "hidden", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "components", + "name": "user_id", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "date_from", + "name": "first_name", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "date_till", + "name": "middle_name", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "status", + "name": "last_name", "description": null, "type": { - "kind": "ENUM", - "name": "UserTechnologyStatus", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyUpdateWithoutTechnologyDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "components", + "name": "gender", "description": null, "type": { "kind": "SCALAR", - "name": "Json", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "date_from", + "name": "birth_date", "description": null, "type": { "kind": "SCALAR", @@ -285886,162 +141775,117 @@ "defaultValue": null }, { - "name": "date_till", + "name": "country_id", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "status", + "name": "region_id", "description": null, "type": { - "kind": "ENUM", - "name": "UserTechnologyStatus", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "city_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyUpdateWithWhereUniqueWithoutTechnologyInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "status", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "data", + "name": "timezone", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyUpdateWithoutTechnologyDataInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyUpsertWithWhereUniqueWithoutTechnologyInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "language_id", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserTechnologyWhereUniqueInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "username", + "name": "num_blog_posts", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "email", + "name": "last", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "phone", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "showEmail", + "name": "notification", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "icq", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "www", "description": null, "type": { "kind": "SCALAR", @@ -286051,7 +141895,7 @@ "defaultValue": null }, { - "name": "fullname", + "name": "contact_email", "description": null, "type": { "kind": "SCALAR", @@ -286061,7 +141905,7 @@ "defaultValue": null }, { - "name": "image", + "name": "mobile_phone", "description": null, "type": { "kind": "SCALAR", @@ -286071,7 +141915,7 @@ "defaultValue": null }, { - "name": "address", + "name": "home_phone", "description": null, "type": { "kind": "SCALAR", @@ -286081,57 +141925,57 @@ "defaultValue": null }, { - "name": "active", + "name": "about", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "experience", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "job_title", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "work_place", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "sudo", + "name": "ip", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "confirmation_code", "description": null, "type": { "kind": "SCALAR", @@ -286141,41 +141985,41 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "rating", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "etherwallet", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "photo", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "sudo", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "defaultValue": null @@ -286185,7 +142029,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyWithoutUsersInput", + "name": "UserGroupCreateManyWithoutUsersInput", "ofType": null }, "defaultValue": null @@ -286195,7 +142039,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutCreatedByInput", + "name": "UserCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null @@ -286205,7 +142049,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutCreatedUsersInput", + "name": "UserCreateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null @@ -286215,7 +142059,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyWithoutUserInput", + "name": "LogedInCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null @@ -286225,27 +142069,27 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithoutCreatedByInput", + "name": "FileCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithoutCreatedByInput", + "name": "EthContractSourceCreateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SettingsUpdateOneWithoutUserInput", + "name": "EthAccountCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null @@ -286255,1075 +142099,856 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutCreatedByInput", + "name": "ResourceCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutUserInput", + "name": "ChatRoomCreateManyWithoutMembersInput", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "CreatedRooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutUsersInput", + "name": "ChatRoomCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "Messages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutCreatedByInput", + "name": "ChatMessageCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "ReadedMessages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TagUpdateManyWithoutCreatedByInput", + "name": "ChatMessageReadedCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "Notices", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutCreatedByInput", + "name": "NoticeCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "Votes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutMembersInput", + "name": "VoteCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "NotificationTypes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutCreatedByInput", + "name": "NotificationTypeCreateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "NotificationTypesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutCreatedByInput", + "name": "NotificationTypeCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "ResourceTags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutUserInput", + "name": "ResourceTagCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "PrismaProjects", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyWithoutUserInput", + "name": "ProjectCreateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "topics", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithoutCreatedByInput", + "name": "TopicCreateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutCreatedByInput", + "name": "CommentCreateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "Tarifs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutUserInput", + "name": "UserTarifCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "Account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutCreatedByInput", + "name": "AccountCreateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "Places", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutUserInput", + "name": "PlaceCreateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserCreateWithoutTarifsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "ProjectsCreated", + "name": "username", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "showEmail", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "showPhone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "password", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "fullname", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "image", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutUserAuthedInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "active", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutPrismaUsersInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "activated", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "deleted", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CareerUpdateOneWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "hidden", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null }, { - "name": "set", + "name": "user_id", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "disconnect", + "name": "first_name", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "updateMany", + "name": "middle_name", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithWhereNestedInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "deleteMany", + "name": "last_name", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserScalarWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutCreatedUsersInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "gender", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "disconnect", + "name": "birth_date", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithoutCreatedByInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "country_id", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WorldWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "set", + "name": "region_id", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WorldWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "disconnect", + "name": "city_id", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WorldWhereUniqueInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "updateMany", + "name": "status", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithWhereNestedInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "deleteMany", + "name": "timezone", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WorldScalarWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithWhereNestedInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "language_id", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WorldScalarWhereInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "data", + "name": "num_blog_posts", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "WorldScalarWhereInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "Logical AND on all given filters.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WorldScalarWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "OR", - "description": "Logical OR on all given filters.", + "name": "last", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WorldScalarWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "NOT", - "description": "Logical NOT on all given filters combined by AND.", + "name": "created_at", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WorldScalarWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, "defaultValue": null }, { - "name": "createdAt", + "name": "notification", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_not", - "description": "All values that are not equal to given value.", + "name": "icq", + "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_in", - "description": "All values that are contained in given list.", + "name": "www", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "createdAt_not_in", - "description": "All values that are not contained in given list.", + "name": "contact_email", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "createdAt_lt", - "description": "All values less than the given value.", + "name": "mobile_phone", + "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_lte", - "description": "All values less than or equal the given value.", + "name": "home_phone", + "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_gt", - "description": "All values greater than the given value.", + "name": "about", + "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "createdAt_gte", - "description": "All values greater than or equal the given value.", + "name": "experience", + "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt", + "name": "job_title", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_not", - "description": "All values that are not equal to given value.", + "name": "work_place", + "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_in", - "description": "All values that are contained in given list.", + "name": "ip", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_not_in", - "description": "All values that are not contained in given list.", + "name": "confirmation_code", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_lt", - "description": "All values less than the given value.", + "name": "rating", + "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_lte", - "description": "All values less than or equal the given value.", + "name": "etherwallet", + "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_gt", - "description": "All values greater than the given value.", + "name": "photo", + "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt_gte", - "description": "All values greater than or equal the given value.", + "name": "sudo", + "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "id", + "name": "Groups", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "UserGroupCreateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "id_not", - "description": "All values that are not equal to given value.", + "name": "CreatedUsers", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "UserCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "id_in", - "description": "All values that are contained in given list.", + "name": "CreatedBy", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutCreatedUsersInput", + "ofType": null }, "defaultValue": null }, { - "name": "id_not_in", - "description": "All values that are not contained in given list.", + "name": "LogedIns", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "LogedInCreateManyWithoutUserInput", + "ofType": null }, "defaultValue": null }, { - "name": "id_lt", - "description": "All values less than the given value.", + "name": "Files", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "FileCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "id_lte", - "description": "All values less than or equal the given value.", + "name": "EthContractSourcesCreated", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "EthContractSourceCreateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "id_gt", - "description": "All values greater than the given value.", + "name": "EthAccounts", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "EthAccountCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "id_gte", - "description": "All values greater than or equal the given value.", + "name": "Resources", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "ResourceCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "id_contains", - "description": "All values containing the given string.", + "name": "Rooms", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "ChatRoomCreateManyWithoutMembersInput", "ofType": null }, "defaultValue": null }, { - "name": "id_not_contains", - "description": "All values not containing the given string.", + "name": "CreatedRooms", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "ChatRoomCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "id_starts_with", - "description": "All values starting with the given string.", + "name": "Messages", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "ChatMessageCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "id_not_starts_with", - "description": "All values not starting with the given string.", + "name": "ReadedMessages", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "id_ends_with", - "description": "All values ending with the given string.", + "name": "Notices", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "NoticeCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "id_not_ends_with", - "description": "All values not ending with the given string.", + "name": "Votes", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "VoteCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "NotificationTypes", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotificationTypeCreateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "name_not", - "description": "All values that are not equal to given value.", + "name": "NotificationTypesCreated", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotificationTypeCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "name_in", - "description": "All values that are contained in given list.", + "name": "Tags", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "TagCreateManyWithoutCreatedByInput", + "ofType": null }, "defaultValue": null }, { - "name": "name_not_in", - "description": "All values that are not contained in given list.", + "name": "ResourceTags", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "ResourceTagCreateManyWithoutCreatedByInput", + "ofType": null }, "defaultValue": null }, { - "name": "name_lt", - "description": "All values less than the given value.", + "name": "PrismaProjects", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ProjectCreateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "name_lte", - "description": "All values less than or equal the given value.", + "name": "topics", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "TopicCreateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "name_gt", - "description": "All values greater than the given value.", + "name": "comments", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CommentCreateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "name_gte", - "description": "All values greater than or equal the given value.", + "name": "Account", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "AccountCreateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "name_contains", - "description": "All values containing the given string.", + "name": "Places", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "PlaceCreateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserCreateWithoutTopicsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "name_not_contains", - "description": "All values not containing the given string.", + "name": "username", + "description": null, "type": { "kind": "SCALAR", "name": "String", @@ -287332,8 +142957,8 @@ "defaultValue": null }, { - "name": "name_starts_with", - "description": "All values starting with the given string.", + "name": "email", + "description": null, "type": { "kind": "SCALAR", "name": "String", @@ -287342,8 +142967,8 @@ "defaultValue": null }, { - "name": "name_not_starts_with", - "description": "All values not starting with the given string.", + "name": "phone", + "description": null, "type": { "kind": "SCALAR", "name": "String", @@ -287352,27 +142977,27 @@ "defaultValue": null }, { - "name": "name_ends_with", - "description": "All values ending with the given string.", + "name": "showEmail", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "name_not_ends_with", - "description": "All values not ending with the given string.", + "name": "showPhone", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "seed", + "name": "password", "description": null, "type": { "kind": "SCALAR", @@ -287382,8 +143007,8 @@ "defaultValue": null }, { - "name": "seed_not", - "description": "All values that are not equal to given value.", + "name": "fullname", + "description": null, "type": { "kind": "SCALAR", "name": "String", @@ -287392,94 +143017,78 @@ "defaultValue": null }, { - "name": "seed_in", - "description": "All values that are contained in given list.", + "name": "image", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "seed_not_in", - "description": "All values that are not contained in given list.", + "name": "address", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "seed_lt", - "description": "All values less than the given value.", + "name": "active", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "seed_lte", - "description": "All values less than or equal the given value.", + "name": "activated", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "seed_gt", - "description": "All values greater than the given value.", + "name": "deleted", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "seed_gte", - "description": "All values greater than or equal the given value.", + "name": "hidden", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "seed_contains", - "description": "All values containing the given string.", + "name": "user_id", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "seed_not_contains", - "description": "All values not containing the given string.", + "name": "first_name", + "description": null, "type": { "kind": "SCALAR", "name": "String", @@ -287488,8 +143097,8 @@ "defaultValue": null }, { - "name": "seed_starts_with", - "description": "All values starting with the given string.", + "name": "middle_name", + "description": null, "type": { "kind": "SCALAR", "name": "String", @@ -287498,8 +143107,8 @@ "defaultValue": null }, { - "name": "seed_not_starts_with", - "description": "All values not starting with the given string.", + "name": "last_name", + "description": null, "type": { "kind": "SCALAR", "name": "String", @@ -287508,644 +143117,502 @@ "defaultValue": null }, { - "name": "seed_ends_with", - "description": "All values ending with the given string.", + "name": "gender", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "seed_not_ends_with", - "description": "All values not ending with the given string.", + "name": "birth_date", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "type", + "name": "country_id", "description": null, "type": { - "kind": "ENUM", - "name": "WorldType", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "type_not", - "description": "All values that are not equal to given value.", + "name": "region_id", + "description": null, "type": { - "kind": "ENUM", - "name": "WorldType", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "type_in", - "description": "All values that are contained in given list.", + "name": "city_id", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WorldType", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "type_not_in", - "description": "All values that are not contained in given list.", + "name": "status", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WorldType", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "time", + "name": "timezone", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "time_not", - "description": "All values that are not equal to given value.", + "name": "language_id", + "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "time_in", - "description": "All values that are contained in given list.", + "name": "num_blog_posts", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "time_not_in", - "description": "All values that are not contained in given list.", + "name": "last", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "time_lt", - "description": "All values less than the given value.", + "name": "created_at", + "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "time_lte", - "description": "All values less than or equal the given value.", + "name": "notification", + "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "time_gt", - "description": "All values greater than the given value.", + "name": "icq", + "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "time_gte", - "description": "All values greater than or equal the given value.", + "name": "www", + "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "timeChanger", + "name": "contact_email", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "timeChanger_not", - "description": "All values that are not equal to given value.", + "name": "mobile_phone", + "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "timeChanger_in", - "description": "All values that are contained in given list.", + "name": "home_phone", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "timeChanger_not_in", - "description": "All values that are not contained in given list.", + "name": "about", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "timeChanger_lt", - "description": "All values less than the given value.", + "name": "experience", + "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "timeChanger_lte", - "description": "All values less than or equal the given value.", + "name": "job_title", + "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "timeChanger_gt", - "description": "All values greater than the given value.", + "name": "work_place", + "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "timeChanger_gte", - "description": "All values greater than or equal the given value.", + "name": "ip", + "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "days", + "name": "confirmation_code", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "days_not", - "description": "All values that are not equal to given value.", + "name": "rating", + "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "days_in", - "description": "All values that are contained in given list.", + "name": "etherwallet", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "days_not_in", - "description": "All values that are not contained in given list.", + "name": "photo", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "days_lt", - "description": "All values less than the given value.", + "name": "sudo", + "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "days_lte", - "description": "All values less than or equal the given value.", + "name": "Groups", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "UserGroupCreateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "days_gt", - "description": "All values greater than the given value.", + "name": "CreatedUsers", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "UserCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "days_gte", - "description": "All values greater than or equal the given value.", + "name": "CreatedBy", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "lastPlayed", + "name": "LogedIns", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "LogedInCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "lastPlayed_not", - "description": "All values that are not equal to given value.", + "name": "Files", + "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "FileCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "lastPlayed_in", - "description": "All values that are contained in given list.", + "name": "EthContractSourcesCreated", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "EthContractSourceCreateManyInput", + "ofType": null }, "defaultValue": null }, { - "name": "lastPlayed_not_in", - "description": "All values that are not contained in given list.", + "name": "EthAccounts", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "EthAccountCreateManyWithoutCreatedByInput", + "ofType": null }, "defaultValue": null }, { - "name": "lastPlayed_lt", - "description": "All values less than the given value.", + "name": "Resources", + "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "ResourceCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "lastPlayed_lte", - "description": "All values less than or equal the given value.", + "name": "Rooms", + "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "ChatRoomCreateManyWithoutMembersInput", "ofType": null }, "defaultValue": null }, { - "name": "lastPlayed_gt", - "description": "All values greater than the given value.", + "name": "CreatedRooms", + "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "ChatRoomCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "lastPlayed_gte", - "description": "All values greater than or equal the given value.", + "name": "Messages", + "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "ChatMessageCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", + "name": "ReadedMessages", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "seed", + "name": "Notices", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NoticeCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "type", + "name": "Votes", "description": null, "type": { - "kind": "ENUM", - "name": "WorldType", + "kind": "INPUT_OBJECT", + "name": "VoteCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "time", + "name": "NotificationTypes", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "NotificationTypeCreateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "timeChanger", + "name": "NotificationTypesCreated", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "NotificationTypeCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "days", + "name": "Tags", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "TagCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "lastPlayed", + "name": "ResourceTags", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "ResourceTagCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutUserInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "PrismaProjects", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "VoteWhereUniqueInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "ProjectCreateManyWithoutPrismaUsersInput", + "ofType": null }, "defaultValue": null }, { - "name": "set", + "name": "comments", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "VoteWhereUniqueInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "CommentCreateManyWithoutCreated_byInput", + "ofType": null }, "defaultValue": null }, { - "name": "disconnect", + "name": "Tarifs", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "VoteWhereUniqueInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "UserTarifCreateManyWithoutUserInput", + "ofType": null }, "defaultValue": null }, { - "name": "updateMany", + "name": "Account", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithWhereNestedInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "AccountCreateOneWithoutUserInput", + "ofType": null }, "defaultValue": null }, { - "name": "deleteMany", + "name": "Places", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "VoteScalarWhereInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "PlaceCreateManyWithoutOwnerInput", + "ofType": null }, "defaultValue": null } @@ -288156,7 +143623,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "UserUpdateManyMutationInput", + "name": "UserCreateWithoutVotesInput", "description": null, "fields": null, "inputFields": [ @@ -288291,17 +143758,17 @@ "defaultValue": null }, { - "name": "sudo", + "name": "user_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "first_name", "description": null, "type": { "kind": "SCALAR", @@ -288311,131 +143778,87 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "middle_name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "last_name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "gender", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "birth_date", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutSettingsInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "country_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutVotesInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "region_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutCareerInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "city_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "disconnect", + "name": "status", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateWithoutCareerDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "username", + "name": "timezone", "description": null, "type": { "kind": "SCALAR", @@ -288445,47 +143868,57 @@ "defaultValue": null }, { - "name": "email", + "name": "language_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "phone", + "name": "num_blog_posts", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "showEmail", + "name": "last", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "notification", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "icq", "description": null, "type": { "kind": "SCALAR", @@ -288495,7 +143928,7 @@ "defaultValue": null }, { - "name": "fullname", + "name": "www", "description": null, "type": { "kind": "SCALAR", @@ -288505,7 +143938,7 @@ "defaultValue": null }, { - "name": "image", + "name": "contact_email", "description": null, "type": { "kind": "SCALAR", @@ -288515,7 +143948,7 @@ "defaultValue": null }, { - "name": "address", + "name": "mobile_phone", "description": null, "type": { "kind": "SCALAR", @@ -288525,57 +143958,57 @@ "defaultValue": null }, { - "name": "active", + "name": "home_phone", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "about", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "experience", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "job_title", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "sudo", + "name": "work_place", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "ip", "description": null, "type": { "kind": "SCALAR", @@ -288585,41 +144018,51 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "confirmation_code", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "rating", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "etherwallet", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "photo", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sudo", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null @@ -288629,7 +144072,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyWithoutUsersInput", + "name": "UserGroupCreateManyWithoutUsersInput", "ofType": null }, "defaultValue": null @@ -288639,7 +144082,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutCreatedByInput", + "name": "UserCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null @@ -288649,7 +144092,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutCreatedUsersInput", + "name": "UserCreateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null @@ -288659,7 +144102,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyWithoutUserInput", + "name": "LogedInCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null @@ -288669,27 +144112,27 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithoutCreatedByInput", + "name": "FileCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithoutCreatedByInput", + "name": "EthContractSourceCreateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SettingsUpdateOneWithoutUserInput", + "name": "EthAccountCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null @@ -288699,17 +144142,57 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutCreatedByInput", + "name": "ResourceCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutUserInput", + "name": "ChatRoomCreateManyWithoutMembersInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "CreatedRooms", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChatRoomCreateManyWithoutCreatedByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Messages", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageCreateManyWithoutCreatedByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ReadedMessages", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedCreateManyWithoutUserInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Notices", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NoticeCreateManyWithoutUserInput", "ofType": null }, "defaultValue": null @@ -288719,7 +144202,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutUsersInput", + "name": "NotificationTypeCreateManyWithoutUsersInput", "ofType": null }, "defaultValue": null @@ -288729,7 +144212,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutCreatedByInput", + "name": "NotificationTypeCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null @@ -288739,7 +144222,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TagUpdateManyWithoutCreatedByInput", + "name": "TagCreateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null @@ -288749,856 +144232,1675 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutCreatedByInput", + "name": "ResourceTagCreateManyWithoutCreatedByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "PrismaProjects", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectCreateManyWithoutPrismaUsersInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "topics", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TopicCreateManyWithoutCreated_byInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "comments", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CommentCreateManyWithoutCreated_byInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Tarifs", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserTarifCreateManyWithoutUserInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Account", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountCreateOneWithoutUserInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Places", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PlaceCreateManyWithoutOwnerInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UserGroupConnection", + "description": "A connection to a list of items.", + "fields": [ + { + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "edges", + "description": "A list of edges.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserGroupEdge", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "aggregate", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AggregateUserGroup", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UserGroupEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "node", + "description": "The item at the end of the edge.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserGroup", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserGroupCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "Users", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserCreateManyWithoutGroupsInput", "ofType": null }, "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserGroupCreateWithoutUsersInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UserGroupPreviousValues", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UserGroupSubscriptionPayload", + "description": null, + "fields": [ + { + "name": "mutation", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "UserGroup", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedFields", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Rooms", - "description": null, + "name": "previousValues", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "UserGroupPreviousValues", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserGroupSubscriptionWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutMembersInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserGroupSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "CreatedRooms", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutCreatedByInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserGroupSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Messages", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutCreatedByInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserGroupSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "ReadedMessages", - "description": null, + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutUserInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Notices", - "description": null, + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", - "description": null, + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithoutCreatedByInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "EthAccounts", - "description": null, + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutCreatedByInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Teams", + "name": "node", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutUserInput", + "name": "UserGroupWhereInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserGroupUpdateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "TeamsCreated", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "Users", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutUserInput", + "name": "UserUpdateManyWithoutGroupsInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserUpdateManyWithoutGroupsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "ProjectsCreated", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCreatedByInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "Tasks", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutUserInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserGroupUpdateManyWithoutUsersInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Timers", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutCreatedByInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserGroupWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutCreatedByInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserGroupWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserGroupUpdateWithoutUsersDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Positions", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserGroupUpdateWithWhereUniqueWithoutUsersInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "TasksReactions", + "name": "where", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserGroupWhereUniqueInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "data", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithoutUserInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserGroupUpdateWithoutUsersDataInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserGroupUpsertWithWhereUniqueWithoutUsersInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "EthAccountAuthed", + "name": "where", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutUserAuthedInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserGroupWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UserPreviousValues", + "description": null, + "fields": [ { - "name": "CodeChallengeCompletions", + "name": "id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "PrismaProjects", + "name": "createdAt", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutPrismaUsersInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Imports", + "name": "updatedAt", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateWithoutCodeChallengeCompletionsDataInput", - "description": null, - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { "name": "username", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "email", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "phone", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "showEmail", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "Boolean", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "showPhone", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "Boolean", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "password", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "fullname", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "image", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "address", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "active", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "Boolean", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "activated", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "Boolean", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "deleted", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "Boolean", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "hidden", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "Boolean", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "sudo", + "name": "user_id", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "marketplaceToken", + "name": "first_name", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "acceptChatMessageAnonymous", + "name": "middle_name", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "last_name", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "acceptNewChatRoom", + "name": "gender", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "oldID", + "name": "birth_date", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Groups", + "name": "country_id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedUsers", + "name": "region_id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "city_id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutCreatedUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "LogedIns", + "name": "status", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Files", + "name": "timezone", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "worlds", + "name": "language_id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "settings", + "name": "num_blog_posts", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsUpdateOneWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Resources", + "name": "last", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Votes", + "name": "created_at", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "NotificationTypes", + "name": "notification", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "NotificationTypesCreated", + "name": "icq", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Tags", + "name": "www", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TagUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ResourceTags", + "name": "contact_email", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Rooms", + "name": "mobile_phone", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutMembersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedRooms", + "name": "home_phone", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Messages", + "name": "about", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ReadedMessages", + "name": "experience", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Notices", + "name": "job_title", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "EthContractSourcesCreated", + "name": "work_place", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "EthAccounts", + "name": "ip", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Teams", + "name": "confirmation_code", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "TeamsCreated", + "name": "rating", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Projects", + "name": "etherwallet", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ProjectsCreated", + "name": "photo", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Tasks", + "name": "sudo", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UserTarifConnection", + "description": "A connection to a list of items.", + "fields": [ + { + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Timers", - "description": null, + "name": "edges", + "description": "A list of edges.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserTarifEdge", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "PositionsCreated", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AggregateUserTarif", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UserTarifEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "node", + "description": "The item at the end of the edge.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserTarif", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Positions", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserTarifCreateWithoutTarifInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "dateTill", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "User", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCreateOneWithoutTarifsInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserTarifCreateWithoutUserInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "LettersCreated", + "name": "dateTill", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "Tarif", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutUserAuthedInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TarifCreateOneWithoutUserTarifsInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UserTarifPreviousValues", + "description": null, + "fields": [ { - "name": "PrismaProjects", + "name": "id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutPrismaUsersInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Imports", + "name": "createdAt", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "Career", + "name": "dateTill", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CareerUpdateOneWithoutCreatedByInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "UserUpdateWithoutCreatedByDataInput", + "kind": "OBJECT", + "name": "UserTarifSubscriptionPayload", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "username", + "name": "mutation", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "email", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "UserTarif", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "phone", + "name": "updatedFields", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "showEmail", + "name": "previousValues", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "UserTarifPreviousValues", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserTarifSubscriptionWhereInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "showPhone", - "description": null, + "name": "AND", + "description": "Logical AND on all given filters.", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserTarifSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "password", - "description": null, + "name": "OR", + "description": "Logical OR on all given filters.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserTarifSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "fullname", - "description": null, + "name": "NOT", + "description": "Logical NOT on all given filters combined by AND.", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserTarifSubscriptionWhereInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "image", - "description": null, + "name": "mutation_in", + "description": "The subscription event gets dispatched when it's listed in mutation_in", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MutationType", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "address", - "description": null, + "name": "updatedFields_contains", + "description": "The subscription event gets only dispatched when one of the updated fields names is included in this list", "type": { "kind": "SCALAR", "name": "String", @@ -289607,508 +145909,663 @@ "defaultValue": null }, { - "name": "active", - "description": null, + "name": "updatedFields_contains_every", + "description": "The subscription event gets only dispatched when all of the field names included in this list have been updated", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "activated", - "description": null, + "name": "updatedFields_contains_some", + "description": "The subscription event gets only dispatched when some of the field names included in this list have been updated", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "deleted", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserTarifWhereInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserTarifUpdateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "hidden", + "name": "dateTill", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "sudo", + "name": "User", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutTarifsInput", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "Tarif", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "TarifUpdateOneWithoutUserTarifsInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutTarifsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "acceptChatMessageAnonymous", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserTarifUpdateManyWithoutUserInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "acceptNewChatRoomAnonymous", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserTarifWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserTarifWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserTarifUpdateWithoutTarifDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "oldID", + "name": "dateTill", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Groups", + "name": "User", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyWithoutUsersInput", + "name": "UserUpdateOneWithoutTarifsInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserTarifUpdateWithoutUserDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "CreatedUsers", + "name": "dateTill", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "Tarif", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyWithoutUserInput", + "name": "TarifUpdateOneWithoutUserTarifsInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserTarifUpdateWithWhereUniqueWithoutTarifInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Files", + "name": "where", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserTarifWhereUniqueInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "worlds", + "name": "data", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserTarifUpdateWithoutTarifDataInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserTarifUpdateWithWhereUniqueWithoutUserInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "settings", + "name": "where", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsUpdateOneWithoutUserInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserTarifWhereUniqueInput", + "ofType": null + } }, "defaultValue": null }, { - "name": "Resources", + "name": "data", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutCreatedByInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserTarifUpdateWithoutUserDataInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserTarifUpsertWithWhereUniqueWithoutTarifInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Votes", + "name": "where", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutUserInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserTarifWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserTarifUpsertWithWhereUniqueWithoutUserInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "NotificationTypes", + "name": "where", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutUsersInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserTarifWhereUniqueInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserUpdateDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "NotificationTypesCreated", + "name": "username", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "showEmail", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutMembersInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "showPhone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "password", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "fullname", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "image", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "active", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "activated", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "deleted", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "hidden", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "user_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "first_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "middle_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "last_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "gender", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "birth_date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "country_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "region_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutUserAuthedInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "city_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutPrismaUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "timezone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "language_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CareerUpdateOneWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateWithoutCreatedRoomsDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "username", + "name": "num_blog_posts", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "email", + "name": "last", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "phone", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "showEmail", + "name": "notification", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "icq", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "www", "description": null, "type": { "kind": "SCALAR", @@ -290118,7 +146575,7 @@ "defaultValue": null }, { - "name": "fullname", + "name": "contact_email", "description": null, "type": { "kind": "SCALAR", @@ -290128,7 +146585,7 @@ "defaultValue": null }, { - "name": "image", + "name": "mobile_phone", "description": null, "type": { "kind": "SCALAR", @@ -290138,7 +146595,7 @@ "defaultValue": null }, { - "name": "address", + "name": "home_phone", "description": null, "type": { "kind": "SCALAR", @@ -290148,57 +146605,57 @@ "defaultValue": null }, { - "name": "active", + "name": "about", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "experience", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "job_title", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "work_place", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "sudo", + "name": "ip", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "confirmation_code", "description": null, "type": { "kind": "SCALAR", @@ -290208,41 +146665,41 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "rating", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "etherwallet", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "photo", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "sudo", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "defaultValue": null @@ -290298,21 +146755,21 @@ "defaultValue": null }, { - "name": "worlds", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithoutCreatedByInput", + "name": "EthContractSourceUpdateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SettingsUpdateOneWithoutUserInput", + "name": "EthAccountUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null @@ -290328,261 +146785,406 @@ "defaultValue": null }, { - "name": "Votes", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutUserInput", + "name": "ChatRoomUpdateManyWithoutMembersInput", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "CreatedRooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutUsersInput", + "name": "ChatRoomUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "Messages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutCreatedByInput", + "name": "ChatMessageUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "ReadedMessages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TagUpdateManyWithoutCreatedByInput", + "name": "ChatMessageReadedUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "Notices", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutCreatedByInput", + "name": "NoticeUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "Votes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutMembersInput", + "name": "VoteUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "NotificationTypes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutCreatedByInput", + "name": "NotificationTypeUpdateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "NotificationTypesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutUserInput", + "name": "NotificationTypeUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyWithoutUserInput", + "name": "TagUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "ResourceTags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithoutCreatedByInput", + "name": "ResourceTagUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "PrismaProjects", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutCreatedByInput", + "name": "ProjectUpdateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "topics", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutUserInput", + "name": "TopicUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutCreatedByInput", + "name": "CommentUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "Tarifs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutUserInput", + "name": "UserTarifUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "Account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCreatedByInput", + "name": "AccountUpdateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "Places", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutUserInput", + "name": "PlaceUpdateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserUpdateManyWithoutCreatedByInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Timers", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutCreatedByInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutCreatedByInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutCreatedUsersInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Positions", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutUsersInput", + "name": "UserWhereUniqueInput", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceUpdateManyWithoutCreatedByInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "LettersCreated", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithoutUserInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutUserAuthedInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceWhereUniqueInput", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "VoteUpdateManyWithoutUserInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "VoteWhereUniqueInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "disconnect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "VoteWhereUniqueInput", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutCommentsInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCreatedByInput", + "name": "UserWhereUniqueInput", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutPrismaUsersInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutTopicsInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Imports", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithoutCreatedByInput", + "name": "UserWhereUniqueInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutVotesInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Career", + "name": "connect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CareerUpdateOneWithoutCreatedByInput", + "name": "UserWhereUniqueInput", "ofType": null }, "defaultValue": null @@ -290594,7 +147196,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "UserUpdateWithoutCreatedUsersDataInput", + "name": "UserUpdateWithoutAccountDataInput", "description": null, "fields": null, "inputFields": [ @@ -290729,17 +147331,17 @@ "defaultValue": null }, { - "name": "sudo", + "name": "user_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "first_name", "description": null, "type": { "kind": "SCALAR", @@ -290749,37 +147351,27 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptNewChatRoomAnonymous", + "name": "middle_name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "last_name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "gender", "description": null, "type": { "kind": "SCALAR", @@ -290789,358 +147381,127 @@ "defaultValue": null }, { - "name": "Groups", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyWithoutUsersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutCreatedUsersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "LogedIns", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Files", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "worlds", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "settings", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsUpdateOneWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Resources", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Votes", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "NotificationTypes", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutUsersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "NotificationTypesCreated", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Tags", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TagUpdateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ResourceTags", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Rooms", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutMembersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedRooms", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Messages", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ReadedMessages", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Notices", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "EthContractSourcesCreated", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "EthAccounts", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Teams", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "TeamsCreated", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Projects", + "name": "birth_date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "country_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "region_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "city_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "timezone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "language_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "num_blog_posts", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "last", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutUserAuthedInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "notification", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutPrismaUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "icq", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Career", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CareerUpdateOneWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateWithoutEthAccountAuthedDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "username", + "name": "www", "description": null, "type": { "kind": "SCALAR", @@ -291150,7 +147511,7 @@ "defaultValue": null }, { - "name": "email", + "name": "contact_email", "description": null, "type": { "kind": "SCALAR", @@ -291160,7 +147521,7 @@ "defaultValue": null }, { - "name": "phone", + "name": "mobile_phone", "description": null, "type": { "kind": "SCALAR", @@ -291170,27 +147531,27 @@ "defaultValue": null }, { - "name": "showEmail", + "name": "home_phone", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "about", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "experience", "description": null, "type": { "kind": "SCALAR", @@ -291200,7 +147561,7 @@ "defaultValue": null }, { - "name": "fullname", + "name": "job_title", "description": null, "type": { "kind": "SCALAR", @@ -291210,7 +147571,7 @@ "defaultValue": null }, { - "name": "image", + "name": "work_place", "description": null, "type": { "kind": "SCALAR", @@ -291220,7 +147581,7 @@ "defaultValue": null }, { - "name": "address", + "name": "ip", "description": null, "type": { "kind": "SCALAR", @@ -291230,41 +147591,41 @@ "defaultValue": null }, { - "name": "active", + "name": "confirmation_code", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "rating", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "etherwallet", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "photo", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null @@ -291280,131 +147641,131 @@ "defaultValue": null }, { - "name": "marketplaceToken", + "name": "Groups", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserGroupUpdateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "CreatedUsers", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "LogedIns", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "LogedInUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "Files", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "FileUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Groups", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyWithoutUsersInput", + "name": "EthContractSourceUpdateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutCreatedByInput", + "name": "EthAccountUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutCreatedUsersInput", + "name": "ResourceUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyWithoutUserInput", + "name": "ChatRoomUpdateManyWithoutMembersInput", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "CreatedRooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithoutCreatedByInput", + "name": "ChatRoomUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "Messages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithoutCreatedByInput", + "name": "ChatMessageUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "ReadedMessages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SettingsUpdateOneWithoutUserInput", + "name": "ChatMessageReadedUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "Notices", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutCreatedByInput", + "name": "NoticeUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null @@ -291460,228 +147821,228 @@ "defaultValue": null }, { - "name": "Rooms", + "name": "PrismaProjects", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutMembersInput", + "name": "ProjectUpdateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "topics", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutCreatedByInput", + "name": "TopicUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutCreatedByInput", + "name": "CommentUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "Tarifs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutUserInput", + "name": "UserTarifUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "Places", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyWithoutUserInput", + "name": "PlaceUpdateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserUpdateWithoutCommentsDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "EthContractSourcesCreated", + "name": "username", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "showEmail", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "showPhone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "password", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "fullname", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "image", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "active", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "activated", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "deleted", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "hidden", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "user_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutPrismaUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "first_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "middle_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CareerUpdateOneWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateWithoutEthAccountsDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "username", + "name": "last_name", "description": null, "type": { "kind": "SCALAR", @@ -291691,7 +148052,57 @@ "defaultValue": null }, { - "name": "email", + "name": "gender", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "birth_date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "country_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "region_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "city_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "status", "description": null, "type": { "kind": "SCALAR", @@ -291701,7 +148112,7 @@ "defaultValue": null }, { - "name": "phone", + "name": "timezone", "description": null, "type": { "kind": "SCALAR", @@ -291711,27 +148122,57 @@ "defaultValue": null }, { - "name": "showEmail", + "name": "language_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "num_blog_posts", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "created_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "notification", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "icq", "description": null, "type": { "kind": "SCALAR", @@ -291741,7 +148182,7 @@ "defaultValue": null }, { - "name": "fullname", + "name": "www", "description": null, "type": { "kind": "SCALAR", @@ -291751,7 +148192,7 @@ "defaultValue": null }, { - "name": "image", + "name": "contact_email", "description": null, "type": { "kind": "SCALAR", @@ -291761,7 +148202,7 @@ "defaultValue": null }, { - "name": "address", + "name": "mobile_phone", "description": null, "type": { "kind": "SCALAR", @@ -291771,57 +148212,57 @@ "defaultValue": null }, { - "name": "active", + "name": "home_phone", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "about", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "experience", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "job_title", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "sudo", + "name": "work_place", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "ip", "description": null, "type": { "kind": "SCALAR", @@ -291831,41 +148272,51 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "confirmation_code", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "rating", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "etherwallet", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "photo", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sudo", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null @@ -291921,21 +148372,21 @@ "defaultValue": null }, { - "name": "worlds", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithoutCreatedByInput", + "name": "EthContractSourceUpdateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SettingsUpdateOneWithoutUserInput", + "name": "EthAccountUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null @@ -291951,278 +148402,308 @@ "defaultValue": null }, { - "name": "Votes", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "NotificationTypes", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutUsersInput", + "name": "ChatRoomUpdateManyWithoutMembersInput", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "CreatedRooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutCreatedByInput", + "name": "ChatRoomUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "Messages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TagUpdateManyWithoutCreatedByInput", + "name": "ChatMessageUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "ReadedMessages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutCreatedByInput", + "name": "ChatMessageReadedUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "Notices", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutMembersInput", + "name": "NoticeUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "Votes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutCreatedByInput", + "name": "VoteUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "NotificationTypes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutCreatedByInput", + "name": "NotificationTypeUpdateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "NotificationTypesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutUserInput", + "name": "NotificationTypeUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyWithoutUserInput", + "name": "TagUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "ResourceTags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithoutCreatedByInput", + "name": "ResourceTagUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "PrismaProjects", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutUserInput", + "name": "ProjectUpdateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "topics", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutCreatedByInput", + "name": "TopicUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "Tarifs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutUserInput", + "name": "UserTarifUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "Account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCreatedByInput", + "name": "AccountUpdateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "Places", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutUserInput", + "name": "PlaceUpdateManyWithoutOwnerInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserUpdateWithoutCreatedByDataInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "username", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "showEmail", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "showPhone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "password", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "fullname", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutUserAuthedInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "image", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutPrismaUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "active", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "activated", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CareerUpdateOneWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateWithoutEthContractSourcesCreatedDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "username", + "name": "deleted", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "hidden", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first_name", "description": null, "type": { "kind": "SCALAR", @@ -292232,7 +148713,7 @@ "defaultValue": null }, { - "name": "email", + "name": "middle_name", "description": null, "type": { "kind": "SCALAR", @@ -292242,7 +148723,7 @@ "defaultValue": null }, { - "name": "phone", + "name": "last_name", "description": null, "type": { "kind": "SCALAR", @@ -292252,57 +148733,57 @@ "defaultValue": null }, { - "name": "showEmail", + "name": "gender", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "birth_date", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "country_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "fullname", + "name": "region_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "image", + "name": "city_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "address", + "name": "status", "description": null, "type": { "kind": "SCALAR", @@ -292312,441 +148793,441 @@ "defaultValue": null }, { - "name": "active", + "name": "timezone", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "language_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "num_blog_posts", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "last", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "sudo", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "notification", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "icq", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "www", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "contact_email", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "mobile_phone", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Groups", + "name": "home_phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "about", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "experience", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutCreatedUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "job_title", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "work_place", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "ip", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "confirmation_code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsUpdateOneWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "rating", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "etherwallet", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "photo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "sudo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "Groups", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TagUpdateManyWithoutCreatedByInput", + "name": "UserGroupUpdateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "CreatedUsers", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutCreatedByInput", + "name": "UserUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "LogedIns", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutMembersInput", + "name": "LogedInUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "Files", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutCreatedByInput", + "name": "FileUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutCreatedByInput", + "name": "EthContractSourceUpdateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutUserInput", + "name": "EthAccountUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyWithoutUserInput", + "name": "ResourceUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutCreatedByInput", + "name": "ChatRoomUpdateManyWithoutMembersInput", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "CreatedRooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutUserInput", + "name": "ChatRoomUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "Messages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutCreatedByInput", + "name": "ChatMessageUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "ReadedMessages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutUserInput", + "name": "ChatMessageReadedUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "Notices", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCreatedByInput", + "name": "NoticeUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "Votes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutUserInput", + "name": "VoteUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "NotificationTypes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutCreatedByInput", + "name": "NotificationTypeUpdateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "NotificationTypesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutCreatedByInput", + "name": "NotificationTypeUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutUsersInput", + "name": "TagUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "ResourceTags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutCreatedByInput", + "name": "ResourceTagUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "PrismaProjects", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithoutUserInput", + "name": "ProjectUpdateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "topics", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutUserAuthedInput", + "name": "TopicUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCreatedByInput", + "name": "CommentUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "Tarifs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutPrismaUsersInput", + "name": "UserTarifUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "Account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithoutCreatedByInput", + "name": "AccountUpdateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "Places", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CareerUpdateOneWithoutCreatedByInput", + "name": "PlaceUpdateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null @@ -292758,7 +149239,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "UserUpdateWithoutFilesDataInput", + "name": "UserUpdateWithoutCreatedRoomsDataInput", "description": null, "fields": null, "inputFields": [ @@ -292893,17 +149374,17 @@ "defaultValue": null }, { - "name": "sudo", + "name": "user_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "first_name", "description": null, "type": { "kind": "SCALAR", @@ -292913,538 +149394,538 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "middle_name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "last_name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "gender", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "birth_date", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Groups", + "name": "country_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "region_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "city_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutCreatedUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "timezone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "language_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsUpdateOneWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "num_blog_posts", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "last", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "notification", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "icq", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "www", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "contact_email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutMembersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "mobile_phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "home_phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "about", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "experience", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "job_title", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "work_place", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "ip", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "confirmation_code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "rating", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "etherwallet", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "photo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "sudo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "Groups", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutCreatedByInput", + "name": "UserGroupUpdateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "CreatedUsers", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutUsersInput", + "name": "UserUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutCreatedByInput", + "name": "UserUpdateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "LogedIns", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithoutUserInput", + "name": "LogedInUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "Files", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutUserAuthedInput", + "name": "FileUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCreatedByInput", + "name": "EthContractSourceUpdateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutPrismaUsersInput", + "name": "EthAccountUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithoutCreatedByInput", + "name": "ResourceUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CareerUpdateOneWithoutCreatedByInput", + "name": "ChatRoomUpdateManyWithoutMembersInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateWithoutGroupsDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "username", + "name": "Messages", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ChatMessageUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "email", + "name": "ReadedMessages", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "phone", + "name": "Notices", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NoticeUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "showEmail", + "name": "Votes", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "VoteUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "NotificationTypes", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "NotificationTypeUpdateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "NotificationTypesCreated", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotificationTypeUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "fullname", + "name": "Tags", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "TagUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "image", + "name": "ResourceTags", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ResourceTagUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "address", + "name": "PrismaProjects", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ProjectUpdateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "active", + "name": "topics", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "TopicUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "comments", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "CommentUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "Tarifs", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserTarifUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "Account", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "AccountUpdateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "sudo", + "name": "Places", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "PlaceUpdateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserUpdateWithoutCreatedUsersDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "marketplaceToken", + "name": "username", "description": null, "type": { "kind": "SCALAR", @@ -293454,27 +149935,27 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "email", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "phone", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "showEmail", "description": null, "type": { "kind": "SCALAR", @@ -293484,368 +149965,267 @@ "defaultValue": null }, { - "name": "oldID", + "name": "showPhone", "description": null, "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedUsers", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutCreatedUsersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "LogedIns", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Files", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "worlds", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "settings", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsUpdateOneWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Resources", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Votes", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutUserInput", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "password", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "fullname", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "image", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "active", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutMembersInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "activated", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "deleted", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "hidden", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "user_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "first_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "middle_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "last_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "gender", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "birth_date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "country_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "region_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "city_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "timezone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "language_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "num_blog_posts", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "last", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutUserAuthedInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "notification", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutPrismaUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "icq", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Career", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CareerUpdateOneWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateWithoutImportsDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "username", + "name": "www", "description": null, "type": { "kind": "SCALAR", @@ -293855,7 +150235,7 @@ "defaultValue": null }, { - "name": "email", + "name": "contact_email", "description": null, "type": { "kind": "SCALAR", @@ -293865,7 +150245,7 @@ "defaultValue": null }, { - "name": "phone", + "name": "mobile_phone", "description": null, "type": { "kind": "SCALAR", @@ -293875,27 +150255,27 @@ "defaultValue": null }, { - "name": "showEmail", + "name": "home_phone", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "about", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "experience", "description": null, "type": { "kind": "SCALAR", @@ -293905,7 +150285,7 @@ "defaultValue": null }, { - "name": "fullname", + "name": "job_title", "description": null, "type": { "kind": "SCALAR", @@ -293915,7 +150295,7 @@ "defaultValue": null }, { - "name": "image", + "name": "work_place", "description": null, "type": { "kind": "SCALAR", @@ -293925,7 +150305,7 @@ "defaultValue": null }, { - "name": "address", + "name": "ip", "description": null, "type": { "kind": "SCALAR", @@ -293935,41 +150315,41 @@ "defaultValue": null }, { - "name": "active", + "name": "confirmation_code", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "rating", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "etherwallet", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "photo", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null @@ -293985,131 +150365,121 @@ "defaultValue": null }, { - "name": "marketplaceToken", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptChatMessageAnonymous", + "name": "Groups", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserGroupUpdateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "LogedIns", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "LogedInUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "Files", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "FileUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Groups", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyWithoutUsersInput", + "name": "EthContractSourceUpdateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutCreatedByInput", + "name": "EthAccountUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutCreatedUsersInput", + "name": "ResourceUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyWithoutUserInput", + "name": "ChatRoomUpdateManyWithoutMembersInput", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "CreatedRooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithoutCreatedByInput", + "name": "ChatRoomUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "Messages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithoutCreatedByInput", + "name": "ChatMessageUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "ReadedMessages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SettingsUpdateOneWithoutUserInput", + "name": "ChatMessageReadedUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "Notices", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutCreatedByInput", + "name": "NoticeUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null @@ -294165,228 +150535,218 @@ "defaultValue": null }, { - "name": "Rooms", + "name": "PrismaProjects", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutMembersInput", + "name": "ProjectUpdateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "topics", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutCreatedByInput", + "name": "TopicUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutCreatedByInput", + "name": "CommentUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "Tarifs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutUserInput", + "name": "UserTarifUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "Account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyWithoutUserInput", + "name": "AccountUpdateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "Places", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithoutCreatedByInput", + "name": "PlaceUpdateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserUpdateWithoutEthAccountsDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "EthAccounts", + "name": "username", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "showEmail", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "showPhone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "password", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "fullname", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "image", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "active", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "activated", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "deleted", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutUserAuthedInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "hidden", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "user_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutPrismaUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Career", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CareerUpdateOneWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateWithoutLettersCreatedDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "username", + "name": "first_name", "description": null, "type": { "kind": "SCALAR", @@ -294396,7 +150756,7 @@ "defaultValue": null }, { - "name": "email", + "name": "middle_name", "description": null, "type": { "kind": "SCALAR", @@ -294406,7 +150766,7 @@ "defaultValue": null }, { - "name": "phone", + "name": "last_name", "description": null, "type": { "kind": "SCALAR", @@ -294416,57 +150776,57 @@ "defaultValue": null }, { - "name": "showEmail", + "name": "gender", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "birth_date", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "country_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "fullname", + "name": "region_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "image", + "name": "city_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "address", + "name": "status", "description": null, "type": { "kind": "SCALAR", @@ -294476,441 +150836,441 @@ "defaultValue": null }, { - "name": "active", + "name": "timezone", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "language_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "num_blog_posts", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "last", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "sudo", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "notification", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "icq", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "www", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "contact_email", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "mobile_phone", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Groups", + "name": "home_phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "about", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "experience", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutCreatedUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "job_title", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "work_place", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "ip", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "confirmation_code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsUpdateOneWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "rating", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "etherwallet", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "photo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "sudo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "Groups", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TagUpdateManyWithoutCreatedByInput", + "name": "UserGroupUpdateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "CreatedUsers", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutCreatedByInput", + "name": "UserUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutMembersInput", + "name": "UserUpdateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "LogedIns", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutCreatedByInput", + "name": "LogedInUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "Files", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutCreatedByInput", + "name": "FileUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutUserInput", + "name": "EthContractSourceUpdateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyWithoutUserInput", + "name": "ResourceUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithoutCreatedByInput", + "name": "ChatRoomUpdateManyWithoutMembersInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "CreatedRooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutCreatedByInput", + "name": "ChatRoomUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "Messages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutUserInput", + "name": "ChatMessageUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "ReadedMessages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutCreatedByInput", + "name": "ChatMessageReadedUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "Notices", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutUserInput", + "name": "NoticeUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "Votes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCreatedByInput", + "name": "VoteUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "NotificationTypes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutUserInput", + "name": "NotificationTypeUpdateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "NotificationTypesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutCreatedByInput", + "name": "NotificationTypeUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutCreatedByInput", + "name": "TagUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "ResourceTags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutUsersInput", + "name": "ResourceTagUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "PrismaProjects", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutCreatedByInput", + "name": "ProjectUpdateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "topics", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutUserAuthedInput", + "name": "TopicUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCreatedByInput", + "name": "CommentUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "Tarifs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutPrismaUsersInput", + "name": "UserTarifUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "Account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithoutCreatedByInput", + "name": "AccountUpdateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "Places", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CareerUpdateOneWithoutCreatedByInput", + "name": "PlaceUpdateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null @@ -294922,7 +151282,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "UserUpdateWithoutLogedInsDataInput", + "name": "UserUpdateWithoutFilesDataInput", "description": null, "fields": null, "inputFields": [ @@ -295057,17 +151417,17 @@ "defaultValue": null }, { - "name": "sudo", + "name": "user_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "first_name", "description": null, "type": { "kind": "SCALAR", @@ -295077,538 +151437,538 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "middle_name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "last_name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "gender", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "birth_date", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Groups", + "name": "country_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "region_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "city_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutCreatedUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "timezone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "language_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsUpdateOneWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "num_blog_posts", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "last", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "notification", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "icq", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "www", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "contact_email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutMembersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "mobile_phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "home_phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "about", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "experience", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "job_title", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "work_place", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "ip", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "confirmation_code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "rating", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "etherwallet", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "photo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "sudo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "Groups", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutCreatedByInput", + "name": "UserGroupUpdateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "CreatedUsers", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutUsersInput", + "name": "UserUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutCreatedByInput", + "name": "UserUpdateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "LogedIns", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithoutUserInput", + "name": "LogedInUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutUserAuthedInput", + "name": "EthContractSourceUpdateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCreatedByInput", + "name": "EthAccountUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutPrismaUsersInput", + "name": "ResourceUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithoutCreatedByInput", + "name": "ChatRoomUpdateManyWithoutMembersInput", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "CreatedRooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CareerUpdateOneWithoutCreatedByInput", + "name": "ChatRoomUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateWithoutMessagesDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "username", + "name": "Messages", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ChatMessageUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "email", + "name": "ReadedMessages", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "phone", + "name": "Notices", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NoticeUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "showEmail", + "name": "Votes", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "VoteUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "NotificationTypes", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "NotificationTypeUpdateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "NotificationTypesCreated", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotificationTypeUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "fullname", + "name": "Tags", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "TagUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "image", + "name": "ResourceTags", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ResourceTagUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "address", + "name": "PrismaProjects", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ProjectUpdateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "active", + "name": "topics", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "TopicUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "comments", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "CommentUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "Tarifs", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserTarifUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "Account", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "AccountUpdateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "sudo", + "name": "Places", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "PlaceUpdateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserUpdateWithoutGroupsDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "marketplaceToken", + "name": "username", "description": null, "type": { "kind": "SCALAR", @@ -295618,27 +151978,27 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "email", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "phone", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "showEmail", "description": null, "type": { "kind": "SCALAR", @@ -295648,368 +152008,267 @@ "defaultValue": null }, { - "name": "oldID", + "name": "showPhone", "description": null, "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Groups", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyWithoutUsersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedUsers", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutCreatedUsersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "LogedIns", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Files", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "worlds", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "settings", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsUpdateOneWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Resources", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutCreatedByInput", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "password", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "fullname", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "image", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "active", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "activated", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutMembersInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "deleted", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "hidden", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "user_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "first_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "middle_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "last_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "gender", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "birth_date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "country_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "region_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "city_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "timezone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "language_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "num_blog_posts", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "last", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutUserAuthedInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "notification", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutPrismaUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "icq", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Career", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CareerUpdateOneWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateWithoutNoticesDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "username", + "name": "www", "description": null, "type": { "kind": "SCALAR", @@ -296019,7 +152278,7 @@ "defaultValue": null }, { - "name": "email", + "name": "contact_email", "description": null, "type": { "kind": "SCALAR", @@ -296029,7 +152288,7 @@ "defaultValue": null }, { - "name": "phone", + "name": "mobile_phone", "description": null, "type": { "kind": "SCALAR", @@ -296039,27 +152298,27 @@ "defaultValue": null }, { - "name": "showEmail", + "name": "home_phone", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "about", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "experience", "description": null, "type": { "kind": "SCALAR", @@ -296069,7 +152328,7 @@ "defaultValue": null }, { - "name": "fullname", + "name": "job_title", "description": null, "type": { "kind": "SCALAR", @@ -296079,7 +152338,7 @@ "defaultValue": null }, { - "name": "image", + "name": "work_place", "description": null, "type": { "kind": "SCALAR", @@ -296089,7 +152348,7 @@ "defaultValue": null }, { - "name": "address", + "name": "ip", "description": null, "type": { "kind": "SCALAR", @@ -296099,41 +152358,41 @@ "defaultValue": null }, { - "name": "active", + "name": "confirmation_code", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "rating", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "etherwallet", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "photo", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null @@ -296149,131 +152408,121 @@ "defaultValue": null }, { - "name": "marketplaceToken", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptChatMessageAnonymous", + "name": "CreatedUsers", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "LogedIns", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "LogedInUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "Files", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "FileUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Groups", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyWithoutUsersInput", + "name": "EthContractSourceUpdateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutCreatedByInput", + "name": "EthAccountUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutCreatedUsersInput", + "name": "ResourceUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyWithoutUserInput", + "name": "ChatRoomUpdateManyWithoutMembersInput", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "CreatedRooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithoutCreatedByInput", + "name": "ChatRoomUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "Messages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithoutCreatedByInput", + "name": "ChatMessageUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "ReadedMessages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SettingsUpdateOneWithoutUserInput", + "name": "ChatMessageReadedUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "Notices", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutCreatedByInput", + "name": "NoticeUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null @@ -296329,228 +152578,218 @@ "defaultValue": null }, { - "name": "Rooms", + "name": "PrismaProjects", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutMembersInput", + "name": "ProjectUpdateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "topics", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutCreatedByInput", + "name": "TopicUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutCreatedByInput", + "name": "CommentUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "Tarifs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutUserInput", + "name": "UserTarifUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "Account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithoutCreatedByInput", + "name": "AccountUpdateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "Places", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutCreatedByInput", + "name": "PlaceUpdateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserUpdateWithoutLogedInsDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "Teams", + "name": "username", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "showEmail", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "showPhone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "password", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "fullname", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "image", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "active", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "activated", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutUserAuthedInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "deleted", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "hidden", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutPrismaUsersInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "user_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Career", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CareerUpdateOneWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateWithoutNotificationTypesCreatedDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "username", + "name": "first_name", "description": null, "type": { "kind": "SCALAR", @@ -296560,7 +152799,7 @@ "defaultValue": null }, { - "name": "email", + "name": "middle_name", "description": null, "type": { "kind": "SCALAR", @@ -296570,7 +152809,7 @@ "defaultValue": null }, { - "name": "phone", + "name": "last_name", "description": null, "type": { "kind": "SCALAR", @@ -296580,57 +152819,57 @@ "defaultValue": null }, { - "name": "showEmail", + "name": "gender", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "birth_date", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "country_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "fullname", + "name": "region_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "image", + "name": "city_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "address", + "name": "status", "description": null, "type": { "kind": "SCALAR", @@ -296640,441 +152879,441 @@ "defaultValue": null }, { - "name": "active", + "name": "timezone", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "language_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "num_blog_posts", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "last", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "sudo", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "notification", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "icq", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "www", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "contact_email", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "mobile_phone", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Groups", + "name": "home_phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "about", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "experience", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutCreatedUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "job_title", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "work_place", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "ip", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "confirmation_code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsUpdateOneWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "rating", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "etherwallet", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "photo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "sudo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "Groups", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutCreatedByInput", + "name": "UserGroupUpdateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "CreatedUsers", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutMembersInput", + "name": "UserUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutCreatedByInput", + "name": "UserUpdateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "Files", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutCreatedByInput", + "name": "FileUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutUserInput", + "name": "EthContractSourceUpdateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyWithoutUserInput", + "name": "EthAccountUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithoutCreatedByInput", + "name": "ResourceUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutCreatedByInput", + "name": "ChatRoomUpdateManyWithoutMembersInput", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "CreatedRooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutUserInput", + "name": "ChatRoomUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "Messages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutCreatedByInput", + "name": "ChatMessageUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "ReadedMessages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutUserInput", + "name": "ChatMessageReadedUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "Notices", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCreatedByInput", + "name": "NoticeUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "Votes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutUserInput", + "name": "VoteUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "NotificationTypes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutCreatedByInput", + "name": "NotificationTypeUpdateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "NotificationTypesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutCreatedByInput", + "name": "NotificationTypeUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutUsersInput", + "name": "TagUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "ResourceTags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutCreatedByInput", + "name": "ResourceTagUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "PrismaProjects", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithoutUserInput", + "name": "ProjectUpdateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "topics", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutUserAuthedInput", + "name": "TopicUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCreatedByInput", + "name": "CommentUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "Tarifs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutPrismaUsersInput", + "name": "UserTarifUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "Account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithoutCreatedByInput", + "name": "AccountUpdateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "Places", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CareerUpdateOneWithoutCreatedByInput", + "name": "PlaceUpdateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null @@ -297086,7 +153325,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "UserUpdateWithoutNotificationTypesDataInput", + "name": "UserUpdateWithoutMessagesDataInput", "description": null, "fields": null, "inputFields": [ @@ -297221,17 +153460,17 @@ "defaultValue": null }, { - "name": "sudo", + "name": "user_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "first_name", "description": null, "type": { "kind": "SCALAR", @@ -297241,538 +153480,538 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "middle_name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "last_name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "gender", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "birth_date", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Groups", + "name": "country_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "region_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "city_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutCreatedUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "timezone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "language_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "num_blog_posts", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsUpdateOneWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "last", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "notification", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "icq", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "www", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "contact_email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutMembersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "mobile_phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "home_phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "about", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "experience", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "job_title", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "work_place", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "ip", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "confirmation_code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "rating", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "etherwallet", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "photo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "sudo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "Groups", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutCreatedByInput", + "name": "UserGroupUpdateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "CreatedUsers", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutUsersInput", + "name": "UserUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutCreatedByInput", + "name": "UserUpdateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "LogedIns", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithoutUserInput", + "name": "LogedInUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "Files", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutUserAuthedInput", + "name": "FileUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCreatedByInput", + "name": "EthContractSourceUpdateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutPrismaUsersInput", + "name": "EthAccountUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithoutCreatedByInput", + "name": "ResourceUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CareerUpdateOneWithoutCreatedByInput", + "name": "ChatRoomUpdateManyWithoutMembersInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateWithoutPositionsCreatedDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "username", + "name": "CreatedRooms", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ChatRoomUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "email", + "name": "ReadedMessages", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "phone", + "name": "Notices", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NoticeUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "showEmail", + "name": "Votes", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "VoteUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "NotificationTypes", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "NotificationTypeUpdateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "NotificationTypesCreated", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotificationTypeUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "fullname", + "name": "Tags", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "TagUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "image", + "name": "ResourceTags", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ResourceTagUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "address", + "name": "PrismaProjects", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ProjectUpdateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "active", + "name": "topics", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "TopicUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "comments", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "CommentUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "Tarifs", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserTarifUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "Account", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "AccountUpdateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "sudo", + "name": "Places", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "PlaceUpdateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserUpdateWithoutNoticesDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "marketplaceToken", + "name": "username", "description": null, "type": { "kind": "SCALAR", @@ -297782,27 +154021,27 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "email", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "phone", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "showEmail", "description": null, "type": { "kind": "SCALAR", @@ -297812,368 +154051,267 @@ "defaultValue": null }, { - "name": "oldID", + "name": "showPhone", "description": null, "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Groups", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyWithoutUsersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedUsers", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutCreatedUsersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "LogedIns", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Files", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "worlds", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "settings", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsUpdateOneWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Resources", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutCreatedByInput", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "password", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "fullname", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "image", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "active", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "activated", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutMembersInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "deleted", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "hidden", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "user_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "first_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "middle_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "last_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "gender", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "birth_date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "country_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "region_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "city_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "timezone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "language_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "num_blog_posts", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "last", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutUserAuthedInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "notification", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutPrismaUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "icq", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Career", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CareerUpdateOneWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateWithoutPositionsDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "username", + "name": "www", "description": null, "type": { "kind": "SCALAR", @@ -298183,7 +154321,7 @@ "defaultValue": null }, { - "name": "email", + "name": "contact_email", "description": null, "type": { "kind": "SCALAR", @@ -298193,7 +154331,7 @@ "defaultValue": null }, { - "name": "phone", + "name": "mobile_phone", "description": null, "type": { "kind": "SCALAR", @@ -298203,27 +154341,27 @@ "defaultValue": null }, { - "name": "showEmail", + "name": "home_phone", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "about", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "experience", "description": null, "type": { "kind": "SCALAR", @@ -298233,7 +154371,7 @@ "defaultValue": null }, { - "name": "fullname", + "name": "job_title", "description": null, "type": { "kind": "SCALAR", @@ -298243,7 +154381,7 @@ "defaultValue": null }, { - "name": "image", + "name": "work_place", "description": null, "type": { "kind": "SCALAR", @@ -298253,7 +154391,7 @@ "defaultValue": null }, { - "name": "address", + "name": "ip", "description": null, "type": { "kind": "SCALAR", @@ -298263,41 +154401,41 @@ "defaultValue": null }, { - "name": "active", + "name": "confirmation_code", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "rating", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "etherwallet", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "photo", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null @@ -298313,131 +154451,121 @@ "defaultValue": null }, { - "name": "marketplaceToken", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptChatMessageAnonymous", + "name": "Groups", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserGroupUpdateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "CreatedUsers", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "LogedIns", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "LogedInUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Groups", + "name": "Files", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyWithoutUsersInput", + "name": "FileUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutCreatedByInput", + "name": "EthContractSourceUpdateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutCreatedUsersInput", + "name": "EthAccountUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyWithoutUserInput", + "name": "ResourceUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithoutCreatedByInput", + "name": "ChatRoomUpdateManyWithoutMembersInput", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "CreatedRooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithoutCreatedByInput", + "name": "ChatRoomUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "Messages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SettingsUpdateOneWithoutUserInput", + "name": "ChatMessageUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "ReadedMessages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutCreatedByInput", + "name": "ChatMessageReadedUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null @@ -298493,228 +154621,218 @@ "defaultValue": null }, { - "name": "Rooms", + "name": "PrismaProjects", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutMembersInput", + "name": "ProjectUpdateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "topics", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutCreatedByInput", + "name": "TopicUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutCreatedByInput", + "name": "CommentUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "Tarifs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutUserInput", + "name": "UserTarifUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "Account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyWithoutUserInput", + "name": "AccountUpdateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "Places", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithoutCreatedByInput", + "name": "PlaceUpdateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserUpdateWithoutNotificationTypesCreatedDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "EthAccounts", + "name": "username", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "showEmail", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "showPhone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "password", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "fullname", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "image", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "active", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "activated", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutUserAuthedInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "deleted", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "hidden", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutPrismaUsersInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "user_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Career", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CareerUpdateOneWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateWithoutPrismaProjectsDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "username", + "name": "first_name", "description": null, "type": { "kind": "SCALAR", @@ -298724,7 +154842,7 @@ "defaultValue": null }, { - "name": "email", + "name": "middle_name", "description": null, "type": { "kind": "SCALAR", @@ -298734,7 +154852,7 @@ "defaultValue": null }, { - "name": "phone", + "name": "last_name", "description": null, "type": { "kind": "SCALAR", @@ -298744,57 +154862,57 @@ "defaultValue": null }, { - "name": "showEmail", + "name": "gender", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "birth_date", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "country_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "fullname", + "name": "region_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "image", + "name": "city_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "address", + "name": "status", "description": null, "type": { "kind": "SCALAR", @@ -298804,441 +154922,441 @@ "defaultValue": null }, { - "name": "active", + "name": "timezone", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "language_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "num_blog_posts", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "last", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "sudo", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "notification", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "icq", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "www", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "contact_email", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "mobile_phone", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Groups", + "name": "home_phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "about", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "experience", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutCreatedUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "job_title", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "work_place", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "ip", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "confirmation_code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsUpdateOneWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "rating", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "etherwallet", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "photo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "sudo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "Groups", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TagUpdateManyWithoutCreatedByInput", + "name": "UserGroupUpdateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "CreatedUsers", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutCreatedByInput", + "name": "UserUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutMembersInput", + "name": "UserUpdateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "LogedIns", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutCreatedByInput", + "name": "LogedInUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "Files", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutCreatedByInput", + "name": "FileUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutUserInput", + "name": "EthContractSourceUpdateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyWithoutUserInput", + "name": "EthAccountUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithoutCreatedByInput", + "name": "ResourceUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutCreatedByInput", + "name": "ChatRoomUpdateManyWithoutMembersInput", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "CreatedRooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutUserInput", + "name": "ChatRoomUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "Messages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutCreatedByInput", + "name": "ChatMessageUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "ReadedMessages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutUserInput", + "name": "ChatMessageReadedUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "Notices", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCreatedByInput", + "name": "NoticeUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "Votes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutUserInput", + "name": "VoteUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "NotificationTypes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutCreatedByInput", + "name": "NotificationTypeUpdateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutCreatedByInput", + "name": "TagUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "ResourceTags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutUsersInput", + "name": "ResourceTagUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "PrismaProjects", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutCreatedByInput", + "name": "ProjectUpdateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "topics", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithoutUserInput", + "name": "TopicUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutUserAuthedInput", + "name": "CommentUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "Tarifs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCreatedByInput", + "name": "UserTarifUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "Account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithoutCreatedByInput", + "name": "AccountUpdateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "Places", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CareerUpdateOneWithoutCreatedByInput", + "name": "PlaceUpdateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null @@ -299250,7 +155368,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "UserUpdateWithoutProjectsCreatedDataInput", + "name": "UserUpdateWithoutNotificationTypesDataInput", "description": null, "fields": null, "inputFields": [ @@ -299385,17 +155503,17 @@ "defaultValue": null }, { - "name": "sudo", + "name": "user_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "first_name", "description": null, "type": { "kind": "SCALAR", @@ -299405,538 +155523,538 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "middle_name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "last_name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "gender", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "birth_date", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Groups", + "name": "country_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "region_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "city_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutCreatedUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "timezone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "language_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "num_blog_posts", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsUpdateOneWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "last", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "notification", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "icq", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "www", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "contact_email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "mobile_phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutMembersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "home_phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "about", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "experience", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "job_title", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "work_place", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "ip", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "confirmation_code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "rating", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "etherwallet", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "photo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "sudo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "Groups", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutCreatedByInput", + "name": "UserGroupUpdateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "CreatedUsers", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutUsersInput", + "name": "UserUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutCreatedByInput", + "name": "UserUpdateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "LogedIns", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithoutUserInput", + "name": "LogedInUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "Files", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutUserAuthedInput", + "name": "FileUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCreatedByInput", + "name": "EthContractSourceUpdateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutPrismaUsersInput", + "name": "EthAccountUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithoutCreatedByInput", + "name": "ResourceUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CareerUpdateOneWithoutCreatedByInput", + "name": "ChatRoomUpdateManyWithoutMembersInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateWithoutProjectsDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "username", + "name": "CreatedRooms", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ChatRoomUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "email", + "name": "Messages", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ChatMessageUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "phone", + "name": "ReadedMessages", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "showEmail", + "name": "Notices", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "NoticeUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "Votes", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "VoteUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "NotificationTypesCreated", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotificationTypeUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "fullname", + "name": "Tags", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "TagUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "image", + "name": "ResourceTags", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ResourceTagUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "address", + "name": "PrismaProjects", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ProjectUpdateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "active", + "name": "topics", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "TopicUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "comments", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "CommentUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "Tarifs", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserTarifUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "Account", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "AccountUpdateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "sudo", + "name": "Places", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "PlaceUpdateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserUpdateWithoutPlacesDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "marketplaceToken", + "name": "username", "description": null, "type": { "kind": "SCALAR", @@ -299946,27 +156064,27 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "email", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "phone", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "showEmail", "description": null, "type": { "kind": "SCALAR", @@ -299976,368 +156094,267 @@ "defaultValue": null }, { - "name": "oldID", + "name": "showPhone", "description": null, "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Groups", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyWithoutUsersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedUsers", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutCreatedUsersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "LogedIns", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Files", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "worlds", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "settings", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsUpdateOneWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Resources", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutCreatedByInput", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "password", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "fullname", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "image", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "active", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "activated", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutMembersInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "deleted", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "hidden", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "user_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "first_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "middle_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "last_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "gender", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "birth_date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "country_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "region_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "city_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "timezone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "language_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "num_blog_posts", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "last", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutUserAuthedInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "notification", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutPrismaUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "icq", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Career", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CareerUpdateOneWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateWithoutReadedMessagesDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "username", + "name": "www", "description": null, "type": { "kind": "SCALAR", @@ -300347,7 +156364,7 @@ "defaultValue": null }, { - "name": "email", + "name": "contact_email", "description": null, "type": { "kind": "SCALAR", @@ -300357,7 +156374,7 @@ "defaultValue": null }, { - "name": "phone", + "name": "mobile_phone", "description": null, "type": { "kind": "SCALAR", @@ -300367,27 +156384,27 @@ "defaultValue": null }, { - "name": "showEmail", + "name": "home_phone", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "about", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "experience", "description": null, "type": { "kind": "SCALAR", @@ -300397,7 +156414,7 @@ "defaultValue": null }, { - "name": "fullname", + "name": "job_title", "description": null, "type": { "kind": "SCALAR", @@ -300407,7 +156424,7 @@ "defaultValue": null }, { - "name": "image", + "name": "work_place", "description": null, "type": { "kind": "SCALAR", @@ -300417,7 +156434,7 @@ "defaultValue": null }, { - "name": "address", + "name": "ip", "description": null, "type": { "kind": "SCALAR", @@ -300427,41 +156444,41 @@ "defaultValue": null }, { - "name": "active", + "name": "confirmation_code", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "rating", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "etherwallet", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "photo", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null @@ -300477,131 +156494,131 @@ "defaultValue": null }, { - "name": "marketplaceToken", + "name": "Groups", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserGroupUpdateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "CreatedUsers", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "LogedIns", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "LogedInUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "Files", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "FileUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Groups", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyWithoutUsersInput", + "name": "EthContractSourceUpdateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutCreatedByInput", + "name": "EthAccountUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutCreatedUsersInput", + "name": "ResourceUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyWithoutUserInput", + "name": "ChatRoomUpdateManyWithoutMembersInput", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "CreatedRooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithoutCreatedByInput", + "name": "ChatRoomUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "Messages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithoutCreatedByInput", + "name": "ChatMessageUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "ReadedMessages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SettingsUpdateOneWithoutUserInput", + "name": "ChatMessageReadedUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "Notices", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutCreatedByInput", + "name": "NoticeUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null @@ -300657,228 +156674,218 @@ "defaultValue": null }, { - "name": "Rooms", + "name": "PrismaProjects", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutMembersInput", + "name": "ProjectUpdateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "topics", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutCreatedByInput", + "name": "TopicUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutCreatedByInput", + "name": "CommentUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "Tarifs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyWithoutUserInput", + "name": "UserTarifUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "Account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithoutCreatedByInput", + "name": "AccountUpdateOneWithoutUserInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserUpdateWithoutPrismaProjectsDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "EthAccounts", + "name": "username", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "showEmail", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "showPhone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "password", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "fullname", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "image", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "active", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "activated", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "deleted", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutUserAuthedInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "hidden", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "user_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutPrismaUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "first_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Career", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CareerUpdateOneWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateWithoutResourcesDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "username", + "name": "middle_name", "description": null, "type": { "kind": "SCALAR", @@ -300888,7 +156895,7 @@ "defaultValue": null }, { - "name": "email", + "name": "last_name", "description": null, "type": { "kind": "SCALAR", @@ -300898,57 +156905,57 @@ "defaultValue": null }, { - "name": "phone", + "name": "gender", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "showEmail", + "name": "birth_date", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "country_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "region_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "fullname", + "name": "city_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "image", + "name": "status", "description": null, "type": { "kind": "SCALAR", @@ -300958,7 +156965,7 @@ "defaultValue": null }, { - "name": "address", + "name": "timezone", "description": null, "type": { "kind": "SCALAR", @@ -300968,57 +156975,57 @@ "defaultValue": null }, { - "name": "active", + "name": "language_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "num_blog_posts", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "last", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "sudo", + "name": "notification", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "icq", "description": null, "type": { "kind": "SCALAR", @@ -301028,381 +157035,371 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "www", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "contact_email", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "mobile_phone", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "home_phone", "description": null, "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Groups", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyWithoutUsersInput", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "about", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "experience", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutCreatedUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "job_title", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "work_place", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "ip", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "confirmation_code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsUpdateOneWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "rating", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "etherwallet", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "photo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "sudo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "Groups", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutCreatedByInput", + "name": "UserGroupUpdateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "CreatedUsers", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutMembersInput", + "name": "UserUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutCreatedByInput", + "name": "UserUpdateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "LogedIns", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutCreatedByInput", + "name": "LogedInUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "Files", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutUserInput", + "name": "FileUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyWithoutUserInput", + "name": "EthContractSourceUpdateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithoutCreatedByInput", + "name": "EthAccountUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutCreatedByInput", + "name": "ResourceUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutUserInput", + "name": "ChatRoomUpdateManyWithoutMembersInput", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "CreatedRooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutCreatedByInput", + "name": "ChatRoomUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "Messages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutUserInput", + "name": "ChatMessageUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "ReadedMessages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCreatedByInput", + "name": "ChatMessageReadedUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "Notices", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutUserInput", + "name": "NoticeUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "Votes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutCreatedByInput", + "name": "VoteUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "NotificationTypes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutCreatedByInput", + "name": "NotificationTypeUpdateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "NotificationTypesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutUsersInput", + "name": "NotificationTypeUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutCreatedByInput", + "name": "TagUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "ResourceTags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithoutUserInput", + "name": "ResourceTagUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "topics", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutUserAuthedInput", + "name": "TopicUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCreatedByInput", + "name": "CommentUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "Tarifs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutPrismaUsersInput", + "name": "UserTarifUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "Account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithoutCreatedByInput", + "name": "AccountUpdateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "Places", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CareerUpdateOneWithoutCreatedByInput", + "name": "PlaceUpdateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null @@ -301414,7 +157411,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "UserUpdateWithoutResourceTagsDataInput", + "name": "UserUpdateWithoutReadedMessagesDataInput", "description": null, "fields": null, "inputFields": [ @@ -301549,17 +157546,17 @@ "defaultValue": null }, { - "name": "sudo", + "name": "user_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "first_name", "description": null, "type": { "kind": "SCALAR", @@ -301569,538 +157566,538 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "middle_name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "last_name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "gender", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "birth_date", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Groups", + "name": "country_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "region_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "city_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutCreatedUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "timezone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "language_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "num_blog_posts", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsUpdateOneWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "last", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "notification", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "icq", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "www", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "contact_email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutMembersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "mobile_phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "home_phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "about", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "experience", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "job_title", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "work_place", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "ip", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "confirmation_code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "rating", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "etherwallet", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "photo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "sudo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "Groups", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutCreatedByInput", + "name": "UserGroupUpdateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "CreatedUsers", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutUsersInput", + "name": "UserUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutCreatedByInput", + "name": "UserUpdateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "LogedIns", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithoutUserInput", + "name": "LogedInUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "Files", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutUserAuthedInput", + "name": "FileUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCreatedByInput", + "name": "EthContractSourceUpdateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutPrismaUsersInput", + "name": "EthAccountUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithoutCreatedByInput", + "name": "ResourceUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CareerUpdateOneWithoutCreatedByInput", + "name": "ChatRoomUpdateManyWithoutMembersInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateWithoutRoomsDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "username", + "name": "CreatedRooms", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ChatRoomUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "email", + "name": "Messages", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ChatMessageUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "phone", + "name": "Notices", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NoticeUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "showEmail", + "name": "Votes", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "VoteUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "NotificationTypes", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "NotificationTypeUpdateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "NotificationTypesCreated", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotificationTypeUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "fullname", + "name": "Tags", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "TagUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "image", + "name": "ResourceTags", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ResourceTagUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "address", + "name": "PrismaProjects", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ProjectUpdateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "active", + "name": "topics", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "TopicUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "comments", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "CommentUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "Tarifs", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserTarifUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "Account", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "AccountUpdateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "sudo", + "name": "Places", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "PlaceUpdateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserUpdateWithoutResourcesDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "marketplaceToken", + "name": "username", "description": null, "type": { "kind": "SCALAR", @@ -302110,27 +158107,27 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "email", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "phone", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "showEmail", "description": null, "type": { "kind": "SCALAR", @@ -302140,368 +158137,267 @@ "defaultValue": null }, { - "name": "oldID", + "name": "showPhone", "description": null, "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Groups", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyWithoutUsersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedUsers", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutCreatedUsersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "LogedIns", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Files", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "worlds", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "settings", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsUpdateOneWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Resources", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutCreatedByInput", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "password", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "fullname", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "image", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "active", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "activated", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "deleted", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "hidden", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "user_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "first_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "middle_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "last_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "gender", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "birth_date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "country_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "region_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "city_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "timezone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "language_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "num_blog_posts", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "last", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutUserAuthedInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "notification", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutPrismaUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "icq", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Career", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CareerUpdateOneWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateWithoutSettingsDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "username", + "name": "www", "description": null, "type": { "kind": "SCALAR", @@ -302511,7 +158407,7 @@ "defaultValue": null }, { - "name": "email", + "name": "contact_email", "description": null, "type": { "kind": "SCALAR", @@ -302521,7 +158417,7 @@ "defaultValue": null }, { - "name": "phone", + "name": "mobile_phone", "description": null, "type": { "kind": "SCALAR", @@ -302531,27 +158427,27 @@ "defaultValue": null }, { - "name": "showEmail", + "name": "home_phone", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "about", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "experience", "description": null, "type": { "kind": "SCALAR", @@ -302561,7 +158457,7 @@ "defaultValue": null }, { - "name": "fullname", + "name": "job_title", "description": null, "type": { "kind": "SCALAR", @@ -302571,7 +158467,7 @@ "defaultValue": null }, { - "name": "image", + "name": "work_place", "description": null, "type": { "kind": "SCALAR", @@ -302581,7 +158477,7 @@ "defaultValue": null }, { - "name": "address", + "name": "ip", "description": null, "type": { "kind": "SCALAR", @@ -302591,41 +158487,41 @@ "defaultValue": null }, { - "name": "active", + "name": "confirmation_code", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "rating", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "etherwallet", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "photo", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null @@ -302641,121 +158537,121 @@ "defaultValue": null }, { - "name": "marketplaceToken", + "name": "Groups", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserGroupUpdateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "CreatedUsers", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "LogedIns", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "LogedInUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "Files", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "FileUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Groups", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyWithoutUsersInput", + "name": "EthContractSourceUpdateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutCreatedByInput", + "name": "EthAccountUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutCreatedUsersInput", + "name": "ChatRoomUpdateManyWithoutMembersInput", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "CreatedRooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyWithoutUserInput", + "name": "ChatRoomUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "Messages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithoutCreatedByInput", + "name": "ChatMessageUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "ReadedMessages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithoutCreatedByInput", + "name": "ChatMessageReadedUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "Notices", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutCreatedByInput", + "name": "NoticeUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null @@ -302811,238 +158707,228 @@ "defaultValue": null }, { - "name": "Rooms", + "name": "PrismaProjects", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutMembersInput", + "name": "ProjectUpdateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "topics", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutCreatedByInput", + "name": "TopicUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutCreatedByInput", + "name": "CommentUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "Tarifs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutUserInput", + "name": "UserTarifUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "Account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyWithoutUserInput", + "name": "AccountUpdateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "Places", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithoutCreatedByInput", + "name": "PlaceUpdateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserUpdateWithoutResourceTagsDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "EthAccounts", + "name": "username", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "showEmail", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "showPhone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "password", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "fullname", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "image", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "active", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "activated", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "deleted", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutUserAuthedInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "hidden", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "user_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutPrismaUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "first_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Career", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CareerUpdateOneWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateWithoutTagsDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "username", + "name": "middle_name", "description": null, "type": { "kind": "SCALAR", @@ -303052,7 +158938,7 @@ "defaultValue": null }, { - "name": "email", + "name": "last_name", "description": null, "type": { "kind": "SCALAR", @@ -303062,57 +158948,57 @@ "defaultValue": null }, { - "name": "phone", + "name": "gender", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "showEmail", + "name": "birth_date", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "country_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "region_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "fullname", + "name": "city_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "image", + "name": "status", "description": null, "type": { "kind": "SCALAR", @@ -303122,7 +159008,7 @@ "defaultValue": null }, { - "name": "address", + "name": "timezone", "description": null, "type": { "kind": "SCALAR", @@ -303132,57 +159018,57 @@ "defaultValue": null }, { - "name": "active", + "name": "language_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "num_blog_posts", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "last", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "sudo", + "name": "notification", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "icq", "description": null, "type": { "kind": "SCALAR", @@ -303192,381 +159078,371 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "www", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "contact_email", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "mobile_phone", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "home_phone", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Groups", + "name": "about", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "experience", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutCreatedUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "job_title", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "work_place", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "ip", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "confirmation_code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsUpdateOneWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "rating", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "etherwallet", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "photo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "sudo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "Groups", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutCreatedByInput", + "name": "UserGroupUpdateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "CreatedUsers", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutMembersInput", + "name": "UserUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutCreatedByInput", + "name": "UserUpdateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "LogedIns", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutCreatedByInput", + "name": "LogedInUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "Files", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutUserInput", + "name": "FileUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyWithoutUserInput", + "name": "EthContractSourceUpdateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithoutCreatedByInput", + "name": "EthAccountUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutCreatedByInput", + "name": "ResourceUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutUserInput", + "name": "ChatRoomUpdateManyWithoutMembersInput", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "CreatedRooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutCreatedByInput", + "name": "ChatRoomUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "Messages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutUserInput", + "name": "ChatMessageUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "ReadedMessages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCreatedByInput", + "name": "ChatMessageReadedUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "Notices", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutUserInput", + "name": "NoticeUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "Votes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutCreatedByInput", + "name": "VoteUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "NotificationTypes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutCreatedByInput", + "name": "NotificationTypeUpdateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "NotificationTypesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutUsersInput", + "name": "NotificationTypeUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutCreatedByInput", + "name": "TagUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "PrismaProjects", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithoutUserInput", + "name": "ProjectUpdateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "topics", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutUserAuthedInput", + "name": "TopicUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCreatedByInput", + "name": "CommentUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "Tarifs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutPrismaUsersInput", + "name": "UserTarifUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "Account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithoutCreatedByInput", + "name": "AccountUpdateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "Places", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CareerUpdateOneWithoutCreatedByInput", + "name": "PlaceUpdateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null @@ -303578,7 +159454,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "UserUpdateWithoutTasksDataInput", + "name": "UserUpdateWithoutRoomsDataInput", "description": null, "fields": null, "inputFields": [ @@ -303713,17 +159589,17 @@ "defaultValue": null }, { - "name": "sudo", + "name": "user_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "first_name", "description": null, "type": { "kind": "SCALAR", @@ -303733,538 +159609,538 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "middle_name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "last_name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "gender", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "birth_date", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Groups", + "name": "country_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "region_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "city_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutCreatedUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "timezone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "language_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "num_blog_posts", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsUpdateOneWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "last", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "notification", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "icq", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "www", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "contact_email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "mobile_phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutMembersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "home_phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "about", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "experience", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "job_title", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "work_place", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "ip", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "confirmation_code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "rating", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "etherwallet", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "photo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "sudo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "Groups", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutCreatedByInput", + "name": "UserGroupUpdateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "CreatedUsers", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutUsersInput", + "name": "UserUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutCreatedByInput", + "name": "UserUpdateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "LogedIns", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithoutUserInput", + "name": "LogedInUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "Files", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutUserAuthedInput", + "name": "FileUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCreatedByInput", + "name": "EthContractSourceUpdateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutPrismaUsersInput", + "name": "EthAccountUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithoutCreatedByInput", + "name": "ResourceUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "CreatedRooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CareerUpdateOneWithoutCreatedByInput", + "name": "ChatRoomUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateWithoutTasksReactionsDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "username", + "name": "Messages", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ChatMessageUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "email", + "name": "ReadedMessages", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "phone", + "name": "Notices", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NoticeUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "showEmail", + "name": "Votes", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "VoteUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "NotificationTypes", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "NotificationTypeUpdateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "NotificationTypesCreated", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotificationTypeUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "fullname", + "name": "Tags", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "TagUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "image", + "name": "ResourceTags", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ResourceTagUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "address", + "name": "PrismaProjects", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ProjectUpdateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "active", + "name": "topics", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "TopicUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "comments", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "CommentUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "Tarifs", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserTarifUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "Account", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "AccountUpdateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "sudo", + "name": "Places", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "PlaceUpdateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserUpdateWithoutTagsDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "marketplaceToken", + "name": "username", "description": null, "type": { "kind": "SCALAR", @@ -304274,27 +160150,27 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "email", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "phone", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "showEmail", "description": null, "type": { "kind": "SCALAR", @@ -304304,368 +160180,267 @@ "defaultValue": null }, { - "name": "oldID", + "name": "showPhone", "description": null, "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Groups", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyWithoutUsersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedUsers", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "CreatedBy", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutCreatedUsersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "LogedIns", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Files", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "worlds", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "settings", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsUpdateOneWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Resources", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutCreatedByInput", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "password", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "fullname", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "image", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "active", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "activated", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutMembersInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "deleted", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "hidden", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "user_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "first_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "middle_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "last_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "gender", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "birth_date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "country_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "region_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "city_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "timezone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "language_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "num_blog_posts", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "last", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutUserAuthedInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "notification", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutPrismaUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "icq", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Career", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CareerUpdateOneWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateWithoutTeamsCreatedDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "username", + "name": "www", "description": null, "type": { "kind": "SCALAR", @@ -304675,7 +160450,7 @@ "defaultValue": null }, { - "name": "email", + "name": "contact_email", "description": null, "type": { "kind": "SCALAR", @@ -304685,7 +160460,7 @@ "defaultValue": null }, { - "name": "phone", + "name": "mobile_phone", "description": null, "type": { "kind": "SCALAR", @@ -304695,27 +160470,27 @@ "defaultValue": null }, { - "name": "showEmail", + "name": "home_phone", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "about", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "experience", "description": null, "type": { "kind": "SCALAR", @@ -304725,7 +160500,7 @@ "defaultValue": null }, { - "name": "fullname", + "name": "job_title", "description": null, "type": { "kind": "SCALAR", @@ -304735,7 +160510,7 @@ "defaultValue": null }, { - "name": "image", + "name": "work_place", "description": null, "type": { "kind": "SCALAR", @@ -304745,7 +160520,7 @@ "defaultValue": null }, { - "name": "address", + "name": "ip", "description": null, "type": { "kind": "SCALAR", @@ -304755,41 +160530,41 @@ "defaultValue": null }, { - "name": "active", + "name": "confirmation_code", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "rating", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "etherwallet", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "photo", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null @@ -304805,131 +160580,131 @@ "defaultValue": null }, { - "name": "marketplaceToken", + "name": "Groups", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "UserGroupUpdateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "CreatedUsers", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "CreatedBy", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "UserUpdateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "LogedIns", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "LogedInUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "Files", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "FileUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Groups", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyWithoutUsersInput", + "name": "EthContractSourceUpdateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutCreatedByInput", + "name": "EthAccountUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutCreatedUsersInput", + "name": "ResourceUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyWithoutUserInput", + "name": "ChatRoomUpdateManyWithoutMembersInput", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "CreatedRooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithoutCreatedByInput", + "name": "ChatRoomUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "Messages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithoutCreatedByInput", + "name": "ChatMessageUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "ReadedMessages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SettingsUpdateOneWithoutUserInput", + "name": "ChatMessageReadedUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "Notices", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutCreatedByInput", + "name": "NoticeUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null @@ -304964,16 +160739,6 @@ }, "defaultValue": null }, - { - "name": "Tags", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TagUpdateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, { "name": "ResourceTags", "description": null, @@ -304985,228 +160750,218 @@ "defaultValue": null }, { - "name": "Rooms", + "name": "PrismaProjects", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutMembersInput", + "name": "ProjectUpdateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "topics", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutCreatedByInput", + "name": "TopicUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutCreatedByInput", + "name": "CommentUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "Tarifs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutUserInput", + "name": "UserTarifUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "Account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyWithoutUserInput", + "name": "AccountUpdateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "Places", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithoutCreatedByInput", + "name": "PlaceUpdateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserUpdateWithoutTarifsDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "EthAccounts", + "name": "username", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "showEmail", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "showPhone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "password", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "fullname", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "image", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "active", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "activated", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutUserAuthedInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "deleted", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "hidden", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutPrismaUsersInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "user_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Career", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CareerUpdateOneWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateWithoutTeamsDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "username", + "name": "first_name", "description": null, "type": { "kind": "SCALAR", @@ -305216,7 +160971,7 @@ "defaultValue": null }, { - "name": "email", + "name": "middle_name", "description": null, "type": { "kind": "SCALAR", @@ -305226,7 +160981,7 @@ "defaultValue": null }, { - "name": "phone", + "name": "last_name", "description": null, "type": { "kind": "SCALAR", @@ -305236,57 +160991,57 @@ "defaultValue": null }, { - "name": "showEmail", + "name": "gender", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "birth_date", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "country_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "fullname", + "name": "region_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "image", + "name": "city_id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "address", + "name": "status", "description": null, "type": { "kind": "SCALAR", @@ -305296,441 +161051,441 @@ "defaultValue": null }, { - "name": "active", + "name": "timezone", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "language_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "num_blog_posts", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "last", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "sudo", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "notification", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "icq", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "www", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "contact_email", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "mobile_phone", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Groups", + "name": "home_phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "about", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "experience", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutCreatedUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "job_title", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "work_place", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "ip", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "confirmation_code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsUpdateOneWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "rating", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "etherwallet", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "photo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "sudo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "Groups", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TagUpdateManyWithoutCreatedByInput", + "name": "UserGroupUpdateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "CreatedUsers", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutCreatedByInput", + "name": "UserUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutMembersInput", + "name": "UserUpdateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "LogedIns", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutCreatedByInput", + "name": "LogedInUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "Files", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutCreatedByInput", + "name": "FileUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutUserInput", + "name": "EthContractSourceUpdateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyWithoutUserInput", + "name": "EthAccountUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithoutCreatedByInput", + "name": "ResourceUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutCreatedByInput", + "name": "ChatRoomUpdateManyWithoutMembersInput", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "CreatedRooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutCreatedByInput", + "name": "ChatRoomUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "Messages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutUserInput", + "name": "ChatMessageUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "ReadedMessages", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCreatedByInput", + "name": "ChatMessageReadedUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "Notices", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutUserInput", + "name": "NoticeUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "Votes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutCreatedByInput", + "name": "VoteUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "NotificationTypes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutCreatedByInput", + "name": "NotificationTypeUpdateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "NotificationTypesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutUsersInput", + "name": "NotificationTypeUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutCreatedByInput", + "name": "TagUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "ResourceTags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithoutUserInput", + "name": "ResourceTagUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "PrismaProjects", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutUserAuthedInput", + "name": "ProjectUpdateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "topics", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCreatedByInput", + "name": "TopicUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutPrismaUsersInput", + "name": "CommentUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "Account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithoutCreatedByInput", + "name": "AccountUpdateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "Places", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CareerUpdateOneWithoutCreatedByInput", + "name": "PlaceUpdateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null @@ -305742,7 +161497,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "UserUpdateWithoutTimersDataInput", + "name": "UserUpdateWithoutTopicsDataInput", "description": null, "fields": null, "inputFields": [ @@ -305877,17 +161632,17 @@ "defaultValue": null }, { - "name": "sudo", + "name": "user_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "first_name", "description": null, "type": { "kind": "SCALAR", @@ -305897,989 +161652,838 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "middle_name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "last_name", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "gender", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "birth_date", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "Groups", + "name": "country_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "region_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "city_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutCreatedUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "timezone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "language_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "num_blog_posts", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsUpdateOneWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "last", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Votes", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "notification", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypesCreated", + "name": "icq", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "www", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "contact_email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "mobile_phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutMembersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "home_phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "about", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "experience", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "job_title", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "work_place", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "ip", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "confirmation_code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "rating", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "etherwallet", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "photo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "sudo", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "Groups", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutCreatedByInput", + "name": "UserGroupUpdateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "CreatedUsers", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutUsersInput", + "name": "UserUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "CreatedBy", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutCreatedByInput", + "name": "UserUpdateOneWithoutCreatedUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "LogedIns", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithoutUserInput", + "name": "LogedInUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "Files", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutUserAuthedInput", + "name": "FileUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCreatedByInput", + "name": "EthContractSourceUpdateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutPrismaUsersInput", + "name": "EthAccountUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithoutCreatedByInput", + "name": "ResourceUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "Rooms", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CareerUpdateOneWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateWithoutVotesDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "username", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phone", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "showEmail", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "showPhone", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fullname", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "active", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "activated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "deleted", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hidden", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sudo", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", + "name": "ChatRoomUpdateManyWithoutMembersInput", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "CreatedRooms", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ChatRoomUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "Messages", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "ChatMessageUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "ReadedMessages", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "Notices", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "NoticeUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "Votes", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "VoteUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Groups", + "name": "NotificationTypes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserGroupUpdateManyWithoutUsersInput", + "name": "NotificationTypeUpdateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedUsers", + "name": "NotificationTypesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateManyWithoutCreatedByInput", + "name": "NotificationTypeUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutCreatedUsersInput", + "name": "TagUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "LogedIns", + "name": "ResourceTags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LogedInUpdateManyWithoutUserInput", + "name": "ResourceTagUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Files", + "name": "PrismaProjects", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FileUpdateManyWithoutCreatedByInput", + "name": "ProjectUpdateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "worlds", + "name": "comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyWithoutCreatedByInput", + "name": "CommentUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "settings", + "name": "Tarifs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SettingsUpdateOneWithoutUserInput", + "name": "UserTarifUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Resources", + "name": "Account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutCreatedByInput", + "name": "AccountUpdateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "NotificationTypes", + "name": "Places", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutUsersInput", + "name": "PlaceUpdateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserUpdateWithoutVotesDataInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "NotificationTypesCreated", + "name": "username", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TagUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "phone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Rooms", + "name": "showEmail", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutMembersInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CreatedRooms", + "name": "showPhone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatRoomUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Messages", + "name": "password", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ReadedMessages", + "name": "fullname", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ChatMessageReadedUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Notices", + "name": "image", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "NoticeUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthContractSourcesCreated", + "name": "address", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "EthAccounts", + "name": "active", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Teams", + "name": "activated", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "TeamsCreated", + "name": "deleted", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "Projects", + "name": "hidden", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "ProjectsCreated", + "name": "user_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "Tasks", + "name": "first_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Timers", + "name": "middle_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "last_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "gender", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutUsersInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "birth_date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "country_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithoutUserInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "region_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutUserAuthedInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "city_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutPrismaUsersInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "timezone", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithoutCreatedByInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "language_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CareerUpdateOneWithoutCreatedByInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateWithoutWorldsDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "username", + "name": "num_blog_posts", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "email", + "name": "last", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "phone", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "defaultValue": null }, { - "name": "showEmail", + "name": "notification", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "showPhone", + "name": "icq", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "password", + "name": "www", "description": null, "type": { "kind": "SCALAR", @@ -306889,7 +162493,7 @@ "defaultValue": null }, { - "name": "fullname", + "name": "contact_email", "description": null, "type": { "kind": "SCALAR", @@ -306899,7 +162503,7 @@ "defaultValue": null }, { - "name": "image", + "name": "mobile_phone", "description": null, "type": { "kind": "SCALAR", @@ -306909,7 +162513,7 @@ "defaultValue": null }, { - "name": "address", + "name": "home_phone", "description": null, "type": { "kind": "SCALAR", @@ -306919,57 +162523,57 @@ "defaultValue": null }, { - "name": "active", + "name": "about", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "activated", + "name": "experience", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "deleted", + "name": "job_title", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "hidden", + "name": "work_place", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "sudo", + "name": "ip", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "marketplaceToken", + "name": "confirmation_code", "description": null, "type": { "kind": "SCALAR", @@ -306979,41 +162583,41 @@ "defaultValue": null }, { - "name": "acceptChatMessageAnonymous", + "name": "rating", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoomAnonymous", + "name": "etherwallet", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "acceptNewChatRoom", + "name": "photo", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "oldID", + "name": "sudo", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "defaultValue": null @@ -307069,71 +162673,31 @@ "defaultValue": null }, { - "name": "settings", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SettingsUpdateOneWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Resources", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceUpdateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Votes", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "NotificationTypes", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutUsersInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "NotificationTypesCreated", + "name": "EthContractSourcesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NotificationTypeUpdateManyWithoutCreatedByInput", + "name": "EthContractSourceUpdateManyInput", "ofType": null }, "defaultValue": null }, { - "name": "Tags", + "name": "EthAccounts", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TagUpdateManyWithoutCreatedByInput", + "name": "EthAccountUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "ResourceTags", + "name": "Resources", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceTagUpdateManyWithoutCreatedByInput", + "name": "ResourceUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null @@ -307189,171 +162753,101 @@ "defaultValue": null }, { - "name": "EthContractSourcesCreated", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceUpdateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "EthAccounts", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Teams", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberUpdateManyWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "TeamsCreated", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamUpdateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Projects", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectMemberUpdateManyWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ProjectsCreated", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutCreatedByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Tasks", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaskMemberUpdateManyWithoutUserInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "Timers", + "name": "NotificationTypes", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TimerUpdateManyWithoutCreatedByInput", + "name": "NotificationTypeUpdateManyWithoutUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "PositionsCreated", + "name": "NotificationTypesCreated", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutCreatedByInput", + "name": "NotificationTypeUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "Positions", + "name": "Tags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PositionUpdateManyWithoutUsersInput", + "name": "TagUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "TasksReactions", + "name": "ResourceTags", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "TaskReactionUpdateManyWithoutCreatedByInput", + "name": "ResourceTagUpdateManyWithoutCreatedByInput", "ofType": null }, "defaultValue": null }, { - "name": "LettersCreated", + "name": "PrismaProjects", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "LetterUpdateManyWithoutUserInput", + "name": "ProjectUpdateManyWithoutPrismaUsersInput", "ofType": null }, "defaultValue": null }, { - "name": "EthAccountAuthed", + "name": "topics", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EthAccountUpdateOneWithoutUserAuthedInput", + "name": "TopicUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "CodeChallengeCompletions", + "name": "comments", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CodeChallengeCompletionUpdateManyWithoutCreatedByInput", + "name": "CommentUpdateManyWithoutCreated_byInput", "ofType": null }, "defaultValue": null }, { - "name": "PrismaProjects", + "name": "Tarifs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateManyWithoutPrismaUsersInput", + "name": "UserTarifUpdateManyWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Imports", + "name": "Account", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ImportUpdateManyWithoutCreatedByInput", + "name": "AccountUpdateOneWithoutUserInput", "ofType": null }, "defaultValue": null }, { - "name": "Career", + "name": "Places", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CareerUpdateOneWithoutCreatedByInput", + "name": "PlaceUpdateManyWithoutOwnerInput", "ofType": null }, "defaultValue": null @@ -307519,45 +163013,6 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateWithWhereUniqueWithoutPositionsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateWithoutPositionsDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, { "kind": "INPUT_OBJECT", "name": "UserUpdateWithWhereUniqueWithoutPrismaProjectsInput", @@ -307736,31 +163191,6 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpsertWithWhereUniqueWithoutPositionsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "where", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserWhereUniqueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, { "kind": "INPUT_OBJECT", "name": "UserUpsertWithWhereUniqueWithoutPrismaProjectsInput", @@ -307817,16 +163247,6 @@ "description": null, "fields": null, "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, { "name": "value", "description": null, @@ -307880,16 +163300,6 @@ "description": null, "fields": null, "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, { "name": "value", "description": null, @@ -307929,16 +163339,6 @@ "description": null, "fields": null, "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, { "name": "value", "description": null, @@ -308278,7 +163678,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneRequiredWithoutVotesInput", + "name": "ResourceUpdateOneWithoutVotesInput", "ofType": null }, "defaultValue": null @@ -308288,28 +163688,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutVotesInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "VoteUpdateManyMutationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "value", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", + "name": "UserUpdateOneWithoutVotesInput", "ofType": null }, "defaultValue": null @@ -308340,7 +163719,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneRequiredWithoutVotesInput", + "name": "UserUpdateOneWithoutVotesInput", "ofType": null }, "defaultValue": null @@ -308371,7 +163750,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ResourceUpdateOneRequiredWithoutVotesInput", + "name": "ResourceUpdateOneWithoutVotesInput", "ofType": null }, "defaultValue": null @@ -308510,23 +163889,388 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "WorldCreateWithoutChangedBlocksInput", + "kind": "OBJECT", + "name": "FileResponse", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "id", + "name": "success", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "message", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "errors", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Error", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "data", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "File", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RouteResponse", + "description": null, + "fields": [ + { + "name": "success", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "message", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "errors", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Error", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "data", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Route", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SmsMessageResponse", + "description": null, + "fields": [ + { + "name": "success", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "message", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "errors", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Error", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "data", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "SmsMessage", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SmsProviderResponse", + "description": null, + "fields": [ + { + "name": "success", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "message", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "errors", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Error", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "data", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "SmsProvider", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EthAccountResponse", + "description": null, + "fields": [ + { + "name": "success", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "message", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "errors", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Error", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "data", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "EthAccount", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthRecoverPersonalSignatureDataInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "from", "description": null, "type": { "kind": "NON_NULL", @@ -308540,7 +164284,7 @@ "defaultValue": null }, { - "name": "seed", + "name": "message", "description": null, "type": { "kind": "NON_NULL", @@ -308554,97 +164298,230 @@ "defaultValue": null }, { - "name": "type", + "name": "signature", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "WorldType", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EthBlockResponse", + "description": null, + "fields": [ + { + "name": "success", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "message", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "time", + "name": "errors", "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Error", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "data", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "EthBlock", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EthContractSourceResponse", + "description": null, + "fields": [ + { + "name": "success", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "Boolean", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "timeChanger", + "name": "message", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "days", + "name": "errors", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Error", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "data", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "EthContractSource", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthContractSourceCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "lastPlayed", + "name": "description", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "Json", + "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "source", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutWorldsInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "players", + "name": "bytecode", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PlayerCreateManyWithoutWorldInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "messages", + "name": "abi", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "MessageCreateManyWithoutWorldInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null @@ -308656,140 +164533,107 @@ }, { "kind": "INPUT_OBJECT", - "name": "WorldCreateWithoutCreatedByInput", + "name": "EthContractSourceUpdateInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "seed", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "type", + "name": "description", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WorldType", - "ofType": null - } + "kind": "SCALAR", + "name": "Json", + "ofType": null }, "defaultValue": null }, { - "name": "time", + "name": "source", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "timeChanger", + "name": "bytecode", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "days", + "name": "abi", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Json", + "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EthContractSourceDeployInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "lastPlayed", + "name": "password", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "changedBlocks", + "name": "params", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "BlockCreateManyWithoutWorldInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "players", + "name": "gas", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PlayerCreateManyWithoutWorldInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "messages", + "name": "gasPrice", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "MessageCreateManyWithoutWorldInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null @@ -308801,22 +164645,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "WorldCreateWithoutMessagesInput", + "name": "EthPersonalAccountCreateInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", + "name": "password", "description": null, "type": { "kind": "NON_NULL", @@ -308828,258 +164662,314 @@ } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EthPersonalAccountResponse", + "description": null, + "fields": [ { - "name": "seed", + "name": "success", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "type", + "name": "message", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "errors", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "WorldType", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Error", + "ofType": null + } + } } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "time", + "name": "data", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "EthPersonalAccount", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EthTransactionResponse", + "description": null, + "fields": [ + { + "name": "success", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "Boolean", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "timeChanger", + "name": "message", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "days", + "name": "errors", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Error", + "ofType": null + } + } } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "lastPlayed", + "name": "data", "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "OBJECT", + "name": "EthTransaction", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "type", + "description": null, + "type": { + "kind": "ENUM", + "name": "ResourceType", + "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutWorldsInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "changedBlocks", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "BlockCreateManyWithoutWorldInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "players", + "name": "longtitle", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PlayerCreateManyWithoutWorldInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "WorldCreateWithoutPlayersInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "content", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "contentText", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "seed", + "name": "published", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null }, { - "name": "type", + "name": "deleted", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WorldType", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null }, { - "name": "time", + "name": "hidemenu", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null }, { - "name": "timeChanger", + "name": "searchable", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "days", + "name": "uri", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "lastPlayed", + "name": "isfolder", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "Parent", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserCreateOneWithoutWorldsInput", + "name": "ResourceCreateOneWithoutChildsInput", "ofType": null }, "defaultValue": null }, { - "name": "changedBlocks", + "name": "Childs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "BlockCreateManyWithoutWorldInput", + "name": "ResourceCreateManyWithoutParentInput", "ofType": null }, "defaultValue": null }, { - "name": "messages", + "name": "Image", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "MessageCreateManyWithoutWorldInput", + "name": "FileCreateOneWithoutImageResourceInput", "ofType": null }, "defaultValue": null @@ -309091,93 +164981,62 @@ }, { "kind": "INPUT_OBJECT", - "name": "WorldUpdateManyMutationInput", + "name": "ResourceUpdateInput", "description": null, "fields": null, "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "seed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, { "name": "type", "description": null, "type": { "kind": "ENUM", - "name": "WorldType", + "name": "ResourceType", "ofType": null }, "defaultValue": null }, { - "name": "time", + "name": "code", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "timeChanger", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "days", + "name": "longtitle", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "lastPlayed", + "name": "content", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Json", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateWithoutChangedBlocksDataInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", + "name": "contentText", "description": null, "type": { "kind": "SCALAR", @@ -309187,91 +165046,91 @@ "defaultValue": null }, { - "name": "seed", + "name": "published", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "type", + "name": "deleted", "description": null, "type": { - "kind": "ENUM", - "name": "WorldType", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "time", + "name": "hidemenu", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "timeChanger", + "name": "searchable", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "days", + "name": "uri", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "lastPlayed", + "name": "isfolder", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "Parent", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutWorldsInput", + "name": "ResourceUpdateOneWithoutChildsInput", "ofType": null }, "defaultValue": null }, { - "name": "players", + "name": "Childs", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PlayerUpdateManyWithoutWorldInput", + "name": "ResourceUpdateManyWithoutParentInput", "ofType": null }, "defaultValue": null }, { - "name": "messages", + "name": "Image", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "MessageUpdateManyWithoutWorldInput", + "name": "FileUpdateOneWithoutImageResourceInput", "ofType": null }, "defaultValue": null @@ -309282,107 +165141,181 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateWithoutCreatedByDataInput", + "kind": "OBJECT", + "name": "ResourceResponse", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "name", + "name": "success", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "seed", + "name": "message", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "type", + "name": "errors", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "WorldType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Error", + "ofType": null + } + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "time", + "name": "data", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "Resource", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ChatMessageResponse", + "description": null, + "fields": [ { - "name": "timeChanger", + "name": "success", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "days", + "name": "message", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "lastPlayed", + "name": "errors", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Error", + "ofType": null + } + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "changedBlocks", + "name": "data", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "BlockUpdateManyWithoutWorldInput", + "kind": "OBJECT", + "name": "ChatMessage", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatMessageCreateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "players", + "name": "content", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PlayerUpdateManyWithoutWorldInput", + "kind": "SCALAR", + "name": "Json", "ofType": null }, "defaultValue": null }, { - "name": "messages", + "name": "Room", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "MessageUpdateManyWithoutWorldInput", + "name": "ChatRoomCreateOneWithoutMessagesInput", "ofType": null }, "defaultValue": null @@ -309394,118 +165327,211 @@ }, { "kind": "INPUT_OBJECT", - "name": "WorldUpdateWithoutMessagesDataInput", + "name": "ChatMessageUpdateInput", "description": null, "fields": null, "inputFields": [ { - "name": "name", + "name": "content", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Json", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ChatMessageReadedResponse", + "description": null, + "fields": [ { - "name": "seed", + "name": "success", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "type", + "name": "message", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "WorldType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "time", + "name": "errors", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Error", + "ofType": null + } + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "timeChanger", + "name": "data", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "ChatMessageReaded", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatMessageReadedCreateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "days", + "name": "Message", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatMessageCreateOneWithoutReadedByInput", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ChatRoomResponse", + "description": null, + "fields": [ { - "name": "lastPlayed", + "name": "success", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "CreatedBy", + "name": "message", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutWorldsInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "changedBlocks", + "name": "errors", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "BlockUpdateManyWithoutWorldInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Error", + "ofType": null + } + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "players", + "name": "data", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "PlayerUpdateManyWithoutWorldInput", + "kind": "OBJECT", + "name": "ChatRoom", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "WorldUpdateWithoutPlayersDataInput", + "name": "ChatRoomCreateInput", "description": null, "fields": null, "inputFields": [ @@ -309513,98 +165539,93 @@ "name": "name", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "seed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "WorldType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "time", + "name": "Members", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "UserCreateManyWithoutRoomsInput", "ofType": null }, "defaultValue": null }, { - "name": "timeChanger", + "name": "isPublic", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "days", + "name": "code", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatRoomUpdateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "lastPlayed", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "CreatedBy", + "name": "Members", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UserUpdateOneWithoutWorldsInput", + "name": "UserUpdateManyWithoutRoomsInput", "ofType": null }, "defaultValue": null }, { - "name": "changedBlocks", + "name": "isPublic", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "BlockUpdateManyWithoutWorldInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "messages", + "name": "code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "MessageUpdateManyWithoutWorldInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null @@ -309616,71 +165637,190 @@ }, { "kind": "INPUT_OBJECT", - "name": "WorldUpdateWithWhereUniqueWithoutCreatedByInput", + "name": "ChatRoomInviteInput", "description": null, "fields": null, "inputFields": [ { - "name": "where", + "name": "User", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "WorldWhereUniqueInput", + "name": "UserWhereUniqueInput", "ofType": null } }, "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GameResponse", + "description": null, + "fields": [ + { + "name": "success", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", + "name": "message", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WorldUpdateWithoutCreatedByDataInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "errors", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Error", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "data", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Game", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "WorldUpsertWithWhereUniqueWithoutCreatedByInput", + "kind": "OBJECT", + "name": "GameResultResponse", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "where", + "name": "success", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WorldWhereUniqueInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "message", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "errors", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Error", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "data", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "GameResult", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "MarketplaceAuthResponse", + "name": "TournamentResponse", "description": null, "fields": [ { @@ -309704,9 +165844,13 @@ "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -309740,8 +165884,8 @@ "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Tournament", "ofType": null }, "isDeprecated": false, @@ -309755,7 +165899,7 @@ }, { "kind": "OBJECT", - "name": "EthBlockResponse", + "name": "TournamentGroupResponse", "description": null, "fields": [ { @@ -309779,9 +165923,13 @@ "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -309816,7 +165964,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "EthBlock", + "name": "TournamentGroup", "ofType": null }, "isDeprecated": false, @@ -309829,73 +165977,117 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "EthContractSourceDeployInput", + "kind": "OBJECT", + "name": "TourneyResponse", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "password", + "name": "success", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "params", + "name": "message", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "gas", + "name": "errors", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Error", + "ofType": null + } + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "gasPrice", + "name": "data", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "Tourney", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "EthPersonalAccountCreateInput", + "name": "AnswerInput", "description": null, "fields": null, "inputFields": [ { - "name": "password", + "name": "offer", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Json", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "answer", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Json", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sdp", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Json", + "ofType": null }, "defaultValue": null } @@ -309906,7 +166098,7 @@ }, { "kind": "OBJECT", - "name": "EthPersonalAccountResponse", + "name": "CallRequestResponse", "description": null, "fields": [ { @@ -309967,7 +166159,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "EthPersonalAccount", + "name": "CallRequest", "ofType": null }, "isDeprecated": false, @@ -309979,47 +166171,6 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "INPUT_OBJECT", - "name": "AnswerInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "offer", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "answer", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sdp", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, { "kind": "INPUT_OBJECT", "name": "CallRequestDataInput", @@ -310147,81 +166298,6 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "OBJECT", - "name": "ServiceCategoryResponse", - "description": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Error", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ServiceCategory", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, { "kind": "OBJECT", "name": "__Schema", @@ -311110,26 +167186,6 @@ } ], "directives": [ - { - "name": "prismaCmsFragmentAllFields", - "description": "Automaticly include all fields from schema", - "isRepeatable": false, - "locations": [ - "FRAGMENT_DEFINITION" - ], - "args": [ - { - "name": "if", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true" - } - ] - }, { "name": "include", "description": "Directs the executor to include this field or fragment only when the `if` argument is true.", diff --git a/src/modules/gql/generated/types.ts b/src/modules/gql/generated/types.ts index 63c48ac..7e27058 100644 --- a/src/modules/gql/generated/types.ts +++ b/src/modules/gql/generated/types.ts @@ -19,145 +19,93 @@ export type Scalars = { Float: number; DateTime: globalThis.Date; Json: globalThis.Record | globalThis.Array; - Long: number; /** The `Upload` scalar type represents a file upload. */ Upload: globalThis.File; + Long: number; }; - export interface Query { __typename?: 'Query'; - /** Client api schema for @prisma-cms/front */ - apiSchema: Scalars['String']; - galleries: Array>; + me?: Maybe; + mapPlacesConnection: MapPlaceConnection; + mapGeoObjectsConnection: MapGeoObjectsConnection; + routes: Array>; userGroups: Array>; - worlds: Array>; + ethAccounts: Array>; + ethTransactions: Array>; + resources: Array>; + chatRooms: Array>; notices: Array>; notificationTypes: Array>; resourceTags: Array>; tags: Array>; - votes: Array>; - chatRooms: Array>; games: Array>; gameResults: Array>; tournaments: Array>; tournamentGroups: Array>; tourneys: Array>; - ethAccounts: Array>; - ethContractSources: Array>; - ethTransactions: Array>; + votes: Array>; callRequests: Array>; - positions: Array>; - projectMembers: Array>; - services: Array>; - tasks: Array>; - taskReactions: Array>; - teamMembers: Array>; - timers: Array>; - routes: Array>; - codeChallenges: Array>; - codeChallengeBlocks: Array>; - codeChallengeCompletions: Array>; + beers: Array>; + userTarifs: Array>; + cities: Array>; comments: Array>; - technologyLessons: Array>; - careers: Array>; - technologyLessonUsers: Array>; - userTechnologies: Array>; - tests: Array>; - technologies: Array>; + places: Array>; + tarifs: Array>; ethBlocks: Array>; - teams: Array>; - projects: Array>; - templates: Array>; - resources: Array>; - chatMessages: Array>; + ethContractSources: Array>; users: Array>; - gallery?: Maybe; - world?: Maybe; + chatMessages: Array>; + route?: Maybe; + ethAccount?: Maybe; + ethTransaction?: Maybe; + resource?: Maybe; + chatMessageReaded?: Maybe; + chatRoom?: Maybe; notice?: Maybe; notificationType?: Maybe; resourceTag?: Maybe; tag?: Maybe; - vote?: Maybe; - chatRoom?: Maybe; game?: Maybe; gameResult?: Maybe; tournament?: Maybe; tournamentGroup?: Maybe; tourney?: Maybe; - ethAccount?: Maybe; - ethContractSource?: Maybe; - ethTransaction?: Maybe; - position?: Maybe; - projectMember?: Maybe; - service?: Maybe; - task?: Maybe; - taskReaction?: Maybe; - teamMember?: Maybe; - timer?: Maybe; - route?: Maybe; - codeChallenge?: Maybe; - codeChallengeBlock?: Maybe; - codeChallengeCompletion?: Maybe; + vote?: Maybe; + beer?: Maybe; + city?: Maybe; comment?: Maybe; - technologyLesson?: Maybe; - career?: Maybe; - technologyLessonUser?: Maybe; - userTechnology?: Maybe; - test?: Maybe; - file?: Maybe; - technology?: Maybe; + place?: Maybe; + topic?: Maybe; ethBlock?: Maybe; - team?: Maybe; - project?: Maybe; - template?: Maybe